Skip to content

Commit

Permalink
Update script.js
Browse files Browse the repository at this point in the history
  • Loading branch information
RISHAB-CREATOR authored Jan 20, 2024
1 parent 6a498e2 commit 818a147
Showing 1 changed file with 1 addition and 84 deletions.
85 changes: 1 addition & 84 deletions script.js
Original file line number Diff line number Diff line change
@@ -1,86 +1,3 @@
$(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", "Blogger", "Designer", "Student", "24/7 Most Active Discord User"],
typeSpeed: 100,
backSpeed: 60,
loop: true
});

var typed = new Typed(".typing-2", {
strings: ["YouTuber", "Developer", "Blogger", "Designer", "Student", "24/7 Most Active Discord User"],
typeSpeed: 100,
backSpeed: 60,
loop: true
});

// owl carousel script
$('.carousel').owlCarousel({
margin: 20,
loop: true,
autoplayTimeOut: 2000,
autoplayHoverPause: true,
responsive: {
0:{
items: 1,
nav: false
},
600:{
items: 2,
nav: false
},
1000:{
items: 3,
nav: false
}
}
});
});

document.oncontextmenu = () => {
alert("Pls dont try to steal the codes Restricted By Rishab")
Expand All @@ -100,4 +17,4 @@ document.onkeydown = e => {
}




0 comments on commit 818a147

Please sign in to comment.