This is my portfolio and blog site which can be reached @ https://salihkilicli.github.io/.
The webpage was built on Hugo's Toha theme and the creator of the theme is Emruz Hossain.
The avatar is created using avatarmaker, you can create your own avatar using https://avatarmaker.com/.
Notes:
- I will be sharing blog posts related to Mathematics, Statistics and Data Science under the
Posts
section. - I will also be sharing my personal Data Science projects under the
Projects
section. - Under the
Notes
section I will be posting my personal notes from my favorite books & MOOC about Data Science/ML/DL as well as from scratch tutorials.
Here is a preview of how the particles effects works:
There are so many tutorials on how to use particle effects on the web; however, almost all of them create a new HTML file rather than applying it onto an existing website with a fixed background. I wanted to explain how to do it in this post.
Here is the GitHub repo for the particles.js.
You can edit and preview the live version of the effect on here, and pick best parameters for your own animation.
This website provides HTML, CSS and js codes you want to include in your website to add particles
effect in your webpage.
In order to add particles effect on your website, follow the instructions below:
- Download the demo files from the repo.
- Copy
particles.js
andapp.js
file into your localjs
folder. - Edit your webpage's
index.html
file and insert aparticles.js
container (or attribute) inside the section you want to apply the effect.
<!-- Particles-JS Container -->
<div id="particles-js"></div>
or simply include id="particles-js"
tag inside the container on which you want to apply the effect.
- Then, using a
<script>
tag include the relative path toparticles.js
andapp.js
files.
<!-- Particles Animation JS -->
<script src="assets/js/particles.js"></script>
<script src="assets/js/particles.app.js"></script>
- Now insert the CSS code below inside the corresponding section's (in my case it was
home.css
) css file:
.particles {
margin: 0px !important;
top: 0px !important;
left: 0px !important;
right: 0px !important;
bottom: 0px !important;
z-index: -1;
}