這篇文章主要介紹了JQuery實現的圖文自動輪播效果插件,涉及jQuery處理滑鼠事件及動畫效果的方法,需要的朋友可以參考下
本文實例講述了JQuery實現的圖文自動輪播效果插件。分享給大家供大家參考。具體如下:
intervalID = setInterval(cycleImage, slidetime); $(".main_image .desc").show(); // 展示图片 $(".main_image .block").animate({ opacity: 0.85 }, 1 ); // 设置透明度 //点击和悬停事件 $(".image_thumb ul li:first").addClass('active'); $(".image_thumb ul li").click(function(){ // 设置参数 var imgAlt = $(this).find('img').attr("alt"); var imgTitle = $(this).find('a').attr("href"); var imgDesc = $(this).find('.block').html(); // 从类block中获取html var imgDescHeight = $(".main_image").find('.block').height(); // 计算类block的高度 if ($(this).is(".active")) { // 如果已经激活了,之后的操作... return false; } else { // 动画操作 $(".main_image .block").animate({ opacity: 0, marginBottom: -imgDescHeight }, 250 , function() { $(".main_image .block").html(imgDesc).animate({ opacity: 0.85,marginBottom: "0" }, 250 ); $(".main_image img").attr({ src: imgTitle , alt: imgAlt}); }); } $(".image_thumb ul li").removeClass('active'); $(this).addClass('active'); return false; }) .hover(function(){ $(this).addClass('hover'); }, function() { $(this).removeClass('hover'); }); // Toggle Teaser $("a.collapse").click(function(){ $(".main_image .block").slideToggle(); $("a.collapse").toggleClass("show"); });
以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網!
相關推薦:
#
以上是JQuery實現的圖文自動輪播的效果插件的詳細內容。更多資訊請關注PHP中文網其他相關文章!