Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
nariman-z-k committed Jan 18, 2022
1 parent 038d993 commit 7ea77a3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions js/homeslideshow.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
$("#slideshow > div:gt(0)").hide();

setInterval(function() {
$('#slideshow > div:first')
.fadeOut(1000)
.next()
.fadeIn(1000)
.end()
.appendTo('#slideshow');
}, 30000);

0 comments on commit 7ea77a3

Please sign in to comment.