Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
Javascript images animation
SUBMITTED BY:
Guest
DATE:
Nov. 30, 2013, 5:34 a.m.
FORMAT:
Text only
SIZE:
399 Bytes
Raw
Download
Tweet
HITS:
936
Go to comments
Report
<div id="exampleid">
<img class="img" src="image/myimage1.png">
<img class="img" src="image/myimage1.png">
</div>
<script>
$(document).ready(function()
{
$('.img:gt(0)').hide();
setInterval(function() {
$(".img:first-child").fadeOut(0).next(".img").fadeIn(0).end().appendTo("#exampleid")
}, 800);
});
</script>
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus