uncommented typewriter section as accidentally commented it

Signed-off-by: rodude123 <rodude123@gmail.com>
This commit is contained in:
Rohit Pai 2021-08-01 12:56:55 +01:00
parent 10a5117eb1
commit 525f597a54
2 changed files with 44 additions and 44 deletions

2
dist/js/main.js vendored
View File

@ -1 +1 @@
const scrollLimit=150;window.onscroll=()=>{document.body.scrollTop>=150||document.documentElement.scrollTop>=150?document.querySelector("nav").classList.add("scrolled"):document.querySelector("nav").classList.remove("scrolled");let e="";document.querySelectorAll("section").forEach((o=>{const c=o.offsetTop;window.pageYOffset>=c-60&&(e=o.getAttribute("id"))})),document.querySelectorAll("nav ul li a").forEach((o=>{o.classList.remove("active"),o.href.includes(e)&&""!==e?o.classList.add("active"):""===e&&document.querySelector("nav ul li a").classList.add("active")}))}; const scrollLimit=150;window.onscroll=()=>{document.body.scrollTop>=150||document.documentElement.scrollTop>=150?document.querySelector("nav").classList.add("scrolled"):document.querySelector("nav").classList.remove("scrolled");let e="";document.querySelectorAll("section").forEach((t=>{const o=t.offsetTop;window.pageYOffset>=o-60&&(e=t.getAttribute("id"))})),document.querySelectorAll("nav ul li a").forEach((t=>{t.classList.remove("active"),t.href.includes(e)&&""!==e?t.classList.add("active"):""===e&&document.querySelector("nav ul li a").classList.add("active")}))},document.addEventListener("DOMContentLoaded",(()=>{var e=["full stack developer","web designer","student","gamer","drummer"];function t(e,o,n){o<e.length?(document.querySelector("header div h1").innerHTML=e.substring(0,o+1)+'<span aria-hidden="true">_</span>',setTimeout((function(){t(e,o+1,n)}),100)):"function"==typeof n&&setTimeout(n,700)}!function o(n){void 0===e[n]?setTimeout((function(){o(0)}),1500):n<e[n].length&&t(e[n],0,(function(){setTimeout(o,1500,n+1)}))}(0)}));

View File

@ -39,47 +39,47 @@ window.onscroll = () =>
}); });
}; };
// document.addEventListener('DOMContentLoaded', () => document.addEventListener('DOMContentLoaded', () =>
// { {
// // array with texts to type in typewriter // array with texts to type in typewriter
// var dataText = [ "full stack developer", "web designer", "student", "gamer", "drummer"]; var dataText = [ "full stack developer", "web designer", "student", "gamer", "drummer"];
//
// // type one text in the typwriter // type one text in the typwriter
// // keeps calling itself until the text is finished // keeps calling itself until the text is finished
// function typeWriter(text, i, fnCallback) { function typeWriter(text, i, fnCallback) {
// // chekc if text isn't finished yet // chekc if text isn't finished yet
// if (i < (text.length)) { if (i < (text.length)) {
// // add next character to h1 // add next character to h1
// document.querySelector("header div h1").innerHTML = text.substring(0, i+1) +'<span aria-hidden="true">_</span>'; document.querySelector("header div h1").innerHTML = text.substring(0, i+1) +'<span aria-hidden="true">_</span>';
//
// // wait for a while and call this function again for next character // wait for a while and call this function again for next character
// setTimeout(function() { setTimeout(function() {
// typeWriter(text, i + 1, fnCallback) typeWriter(text, i + 1, fnCallback)
// }, 100); }, 100);
// } }
// // text finished, call callback if there is a callback function // text finished, call callback if there is a callback function
// else if (typeof fnCallback == 'function') { else if (typeof fnCallback == 'function') {
// // call callback after timeout // call callback after timeout
// setTimeout(fnCallback, 700); setTimeout(fnCallback, 700);
// } }
// } }
// // start a typewriter animation for a text in the dataText array // start a typewriter animation for a text in the dataText array
// function StartTextAnimation(i) { function StartTextAnimation(i) {
// if (typeof dataText[i] === 'undefined'){ if (typeof dataText[i] === 'undefined'){
// setTimeout(function() { setTimeout(function() {
// StartTextAnimation(0); StartTextAnimation(0);
// }, 1500); }, 1500);
// // StartTextAnimation(0); // StartTextAnimation(0);
// } }
// else if (i < dataText[i].length) { else if (i < dataText[i].length) {
// // text exists! start typewriter animation // text exists! start typewriter animation
// typeWriter(dataText[i], 0, function(){ typeWriter(dataText[i], 0, function(){
// // after callback (and whole text has been animated), start next text // after callback (and whole text has been animated), start next text
// setTimeout(StartTextAnimation, 1500, i + 1); setTimeout(StartTextAnimation, 1500, i + 1);
// }); });
// } }
// } }
// // start the text animation // start the text animation
// StartTextAnimation(0); StartTextAnimation(0);
// }); });