当前位置:  编程技术>jquery

jquery图片淡入淡出与图片切换效果的例子

    来源: 互联网  发布时间:2014-10-09

    本文导语:  例子,jquery制作图片淡入淡出图片切换效果。 jquery相册插件制作图片淡入淡出效果,图片自动轮播淡进淡出效果,可用于jquery图片相册特效。 代码:   代码示例: //图片切换调用语句 imgtransition({speed: 3000, animate: 1000}); $.f...

例子,jquery制作图片淡入淡出图片切换效果。
jquery相册插件制作图片淡入淡出效果,图片自动轮播淡进淡出效果,可用于jquery图片相册特效。

代码:
 

代码示例:


//图片切换调用语句 imgtransition({speed: 3000, animate: 1000});
$.fn.imgtransition = function(o){
    var defaults = {
        speed : 5000,
        animate : 1000
    };
    o = $.extend(defaults, o);
    return this.each(function(){
        var arr_e = $("li", this);
        arr_e.css({position: "absolute"});
        arr_e.parent().css({margin: "0", padding: "0", "list-style": "none", overflow: "hidden"});
        function shownext(){
            var active = arr_e.filter(".active").length ? arr_e.filter(".active") : arr_e.first();
            var next =  active.next().length ? active.next() : arr_e.first();
            active.css({"z-index": 9});
            next.css({opacity: 0.0, "z-index": 10}).addclass('active').animate({opacity: 1.0}, o.animate, function(){
                active.removeclass('active').css({"z-index": 8});
            });
        }
        arr_e.first().css({"z-index": 9});
        setinterval(function(){
            shownext();
        },o.speed);
    });
};

    
 
 

您可能感兴趣的文章:

  • jQuery淡入淡出效果 InnerFade
  • jquery怎么实现图片淡入淡出?示例
  • jQuery淡入淡出效果代码
  • jquery淡入淡出效果如何实现?图片淡入淡出的例子
  • jquery图片淡入淡出效果的例子
  • jquery淡入淡出效果原理分析
  • jquery实现通用版鼠标经过淡入淡出效果
  • jquery文字淡入淡出效果代码
  • jquery图片淡入淡出效果的简单示例
  • jquery实现添加图片淡入淡出效果的代码
  • jquery 淡入淡出效果入门例子
  • jquery自动切换淡入淡出效果的例子
  • JQuery特效动画淡入淡出 两个ul标签中li互相移动
  • jquery 淡入淡出效果的简单实现
  • jquery背景图淡入淡出效果示例代码
  • jquery插件tooltipv顶部淡入淡出效果使用示例
  • jQuery实现首页图片淡入淡出效果
  • jQuery图片轮换插件 jQuery Dynamic Slideshow
  • jQuery图片预览插件 Jquery Fade In.Fade Out
  • jQuery图片自动放大插件 Greyscale Hover Effect w/ CSS & jQuery
  • jQuery 图片查看 jQuery.Imageview
  • jQuery图片展示插件 Simple Controls Gallery
  • jQuery图片展示插件 Zoomimage
  • jQuery图片显示插件 PrettyPhoto
  • jQuery图片预览插件 Exposure
  • jQuery图片展示插件 Galleria
  • jQuery图片预览插件 imgPreview
  • jQuery 图片库插件 simpleGal
  • jQuery图片标题插件 Captify
  • jQuery图片效果切换 Adipoli
  • Jquery图片滚动插件 BxCarousel
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • jQuery 淡出插件 jQFader
  • 通过javascript库JQuery实现页面跳转功能代码
  • jQuery鼠标动画插件 jquery-ahover
  • jQuery概述,代码举例及最新版下载
  • jQuery向导插件 Jquery Wizard Plugin
  • Jquery操作html复选框checkbox:全选,全不选和反选
  • jQuery圆角插件 jQuery Corners
  • struts+spring+hibernate+jquery实现分页功能的几个基本类介绍(异步加载)
  • jQuery相册插件 jQuery.popeye
  • jQuery UI组件 jQuery UI
  • jQuery右键菜单插件 jQuery ContextMenu
  • jQuery分页插件 Pagination jQuery Plugin
  • jQuery日历插件 jQuery Week Calendar
  • jQuery的中文日历插件 jQuery.datePickerCn
  • jQuery实现CSS3动画效果的插件 jQuery Transit
  • jQuery的CSV插件 jQuery CSV
  • jQuery的气泡提示插件 jquery.ns_bub.js
  • jQuery气泡提示插件 jquery-rollover-tooltip
  • jQuery对话框 jQuery Modal Dialog
  • jQuery 插件 jQuery Ripples
  • 精简版的jQuery jQuery.ish
  • jQuery的OpenSocial插件 OpenSocial jQuery


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3