Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
loblachi authored Apr 3, 2024
1 parent 4ad1b6f commit 0442bde
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions jsfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ $(document).ready(function(){

$('.gg').on('mouseover',function(){ // For the services card to flip
var thise = $(this).attr("data-gg-id");
console.log(thise);
$('.' + thise).css({
'opacity':'1',
'transition':'.5s all',
Expand All @@ -22,7 +21,7 @@ $(document).ready(function(){
})
$('.gg').on('mouseout',function(){ // For the services card to flip
var thise = $(this).attr("data-gg-id");
console.log(thise);

$('.' + thise).css({
'opacity':'0',
'transition':'.5s all',
Expand All @@ -38,13 +37,13 @@ $(document).ready(function(){


$('.nav-ul li').on('click',function(){ // To remove the thing after clicking a link
console.log("clicked");

$('#arrow-menu').removeClass('active');
var menuDown = $('.nav-ul');
menuDown.removeClass('menu-active');
})
$('.showall').on('click',function(){
console.log("clickedshowallbutton");

$('.hidden-gg').toggleClass('hidden-gg')
$('.showall-div').css({
'display':'none'
Expand Down

0 comments on commit 0442bde

Please sign in to comment.