Hiển thị các bài đăng có nhãn jquery. Hiển thị tất cả bài đăng
Hiển thị các bài đăng có nhãn jquery. Hiển thị tất cả bài đăng

Chủ Nhật, 4 tháng 8, 2013

Chuyển động đơn giản với jquery

Bắt đầu với mã HTML và CSS

Chèn với thẻ dưới thẻ </head > mã



<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>

$(function() {

    $('.slideshow img:gt(0)').hide();
  setInterval(function(){


  $('.slideshow :first-child').fadeOut()
 
     .next('img').fadeIn()

     .end().appendTo('.slideshow');}
,
   
          3000);
});






</script>


<style>
.slideshow{
position:relative;width:500px; height:100px;
}
.slideshow img{
position:absolute;

}

</style>