-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
05393a7
commit aef7019
Showing
1 changed file
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,74 @@ | ||
|
||
$(document).ready(function(){ | ||
$(window).scroll(function(){ | ||
// sticky navbar on scroll script | ||
if(this.scrollY > 20){ | ||
$('.navbar').addClass("sticky"); | ||
}else{ | ||
$('.navbar').removeClass("sticky"); | ||
} | ||
|
||
// scroll-up button show/hide script | ||
if(this.scrollY > 500){ | ||
$('.scroll-up-btn').addClass("show"); | ||
}else{ | ||
$('.scroll-up-btn').removeClass("show"); | ||
} | ||
}); | ||
|
||
// slide-up script | ||
$('.scroll-up-btn').click(function(){ | ||
$('html').animate({scrollTop: 0}); | ||
// removing smooth scroll on slide-up button click | ||
$('html').css("scrollBehavior", "auto"); | ||
}); | ||
|
||
$('.navbar .menu li a').click(function(){ | ||
// applying again smooth scroll on menu items click | ||
$('html').css("scrollBehavior", "smooth"); | ||
}); | ||
|
||
// toggle menu/navbar script | ||
$('.menu-btn').click(function(){ | ||
$('.navbar .menu').toggleClass("active"); | ||
$('.menu-btn i').toggleClass("active"); | ||
}); | ||
|
||
// typing text animation script | ||
var typed = new Typed(".typing", { | ||
strings: ["YouTuber", "Developer", "UI/UX Designer", "Designer", "Freelancer"], | ||
typeSpeed: 100, | ||
backSpeed: 60, | ||
loop: true | ||
}); | ||
|
||
var typed = new Typed(".typing-2", { | ||
strings: ["YouTuber", "Developer", "UI/UX Designer", "Designer", "Freelancer"], | ||
typeSpeed: 100, | ||
backSpeed: 60, | ||
loop: true | ||
}); | ||
|
||
// owl carousel script | ||
$('.carousel').owlCarousel({ | ||
margin: 20, | ||
loop: true, | ||
autoplay: true, | ||
autoplayTimeOut: 1000, | ||
autoplayHoverPause: true, | ||
responsive: { | ||
0:{ | ||
items: 1, | ||
nav: false | ||
}, | ||
600:{ | ||
items: 2, | ||
nav: false | ||
}, | ||
1000:{ | ||
items: 3, | ||
nav: false | ||
} | ||
} | ||
}); | ||
}); |