JQuery实现的图文自动轮播效果插件

本文实例讲述了JQuery实现的图文自动轮播效果插件分享给大家供大家参考。具体如下:

rush:js;"> 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"); });

希望本文所述对大家的jQuery程序设计有所帮助。

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: <span id=&quot...
jQuery 添加水印 <script src="../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...