全新jquery多点滑动幻灯片——全屏动画animateSlide

首页banner的酷炫效果多来自全屏大图的幻灯片动画,下面提供一种完美兼容的jquery动画特效:全新jquery多点滑动幻灯片——全屏动画animateSlide(代码完全原创)。

直接上代码,把html、css和jquery代码copy到页面上即可呈现完美画面。

html代码如下:

<div class="animateSlide">
    <div class="animateSlideImgWrap">
        <div class="animateSlideImgBox present">
            <p class="text1">亲,这是第一行标题</p>
            <p class="text2">AAAAAAAAAAAAAAAAAAAAA</p>
            <!--<img class="img"  src="img/1.png" />-->
            <div class="img" style="width: 500px; height: 390px; background: #ffaeae; opacity: 0.6;"></div><!-- 实际项目中用上面注释的半透明png图片,目前临时用div代替图片 -->
        </div>
        <div class="animateSlideImgBox">
            <p class="text1">亲,这是一行宣传语</p>
            <p class="text2">BBBBBBBBBBBBBBBBBBBBB</p>
            <!--<img class="img"  src="img/2.png" />-->
            <div class="img" style="width: 500px; height: 390px; background: #aeffb2; opacity: 0.6;"></div><!-- 实际项目中用上面注释的半透明png图片,目前临时用div代替图片 -->
        </div>
        <div class="animateSlideImgBox">
            <p class="text1">亲,这是一个奇迹啊</p>
            <p class="text2">CCCCCCCCCCCCCCCCCCCCC</p>
            <!--<img class="img"  src="img/3.png" />-->
            <div class="img" style="width: 500px; height: 390px; background: #aebdff; opacity: 0.6;"></div><!-- 实际项目中用上面注释的半透明png图片,目前临时用div代替图片 -->
        </div>
    </div>
    <div class="animateSlideBtnL">&lt;</div>
    <div class="animateSlideBtnR">&lt;</div>
</div>

css代码如下:

.animateSlide {width: 100%; height: 390px; position: relative; background: #f5f5f5;}
.animateSlideImgWrap {width: 100%; height: 390px; position: absolute; z-index: 1; overflow: hidden;}
.animateSlideImgWrap .present {display: block;}
.animateSlideImgBox {width: 100%; height: 390px; position: absolute; z-index: 1; display: none;}
.animateSlideImgBox .text1 {font-family: Microsoft YaHei; font-size: 36px; line-height: 1.2em; color: #384cd0; position: absolute; top: 120px; z-index: 3; white-space: nowrap;}
.animateSlideImgBox .text2 {font-family: Microsoft YaHei; font-size: 26px; line-height: 1.2em; color: orange; position: absolute; top: 200px; z-index: 3; white-space: nowrap;}
.animateSlideImgBox .img {position: absolute; left: 470px; top: 0; z-index: 2;}
.animateSlideBtnL,
.animateSlideBtnR {
    width: 30px; height: 60px; line-height: 60px; font-size: 20px; font-weight: 700; text-align: center; background: #ddd;
    position: absolute; left: 30px; top: 150px; z-index: 6; cursor: pointer; display: none;
}
.animateSlideBtnR {left: auto; right: 20px;}

jquery代码如下:

(function($) {
    $.fn.animateSlide = function(options) {
        var defaults = {
            btnL: ".animateSlideBtnL",
            btnR: ".animateSlideBtnR",
            imgBox: ".animateSlideImgBox",
            animateTime: 500,
            delayTime: 5000,
            density: 1
        };
        var opts = $.extend(defaults, options);
        var widthWin = $(window).width();
        $(window).resize(function() {
            widthWin = $(window).width();
        });
        //
        this.on("mouseenter", function() {
            $(this).find(".animateSlideBtnL, .animateSlideBtnR").stop().fadeIn(400);
        }).on("mouseleave", function() {
            $(this).find(".animateSlideBtnL, .animateSlideBtnR").stop().fadeOut(400);
        });
        return this.each(function() {
            var _this = $(this);
            var _btnL = _this.find(opts.btnL);
            var _btnR = _this.find(opts.btnR);
            var _imgBox = _this.find(opts.imgBox);
            var _imgBoxCur = _imgBox.filter(".present");
            var _curText1 = _imgBoxCur.find(".text1"), _curText2 = _imgBoxCur.find(".text2"), _curImg = _imgBoxCur.find(".img");
            var _imgBoxNext = null, _nextText1 = null, _nextText2 = null, _nextImg = null;
            var index = _imgBox.index(_imgBoxCur) || 0;
            var size = _imgBox.size();
            var start = null;
            index++;
            if(index >= size) {
                index = 0;
            }
            _imgBoxNext = _imgBox.eq(index);
            _nextText1 = _imgBoxNext.find(".text1");
            _nextText2 = _imgBoxNext.find(".text2");
            _nextImg = _imgBoxNext.find(".img");
            _imgBox.find(".text1, .text2, .img").css("left", widthWin);
            _imgBoxCur.find(".text1, .text2").css("left", (widthWin - 980) / 2 + "px");
            _imgBoxCur.find(".img").css("left", (widthWin - 980) / 2 + 470 + "px");
            _btnR.on("click", function() {
                animateSlideFn();
            });
            _btnL.on("click", function() {
                animateSlideFn();
            });
            start = setTimeout(function() {
                animateSlideFn();
                start = setTimeout(arguments.callee, opts.delayTime);
            }, opts.delayTime);
            function animateSlideFn() {
                if(!(_imgBoxCur.find(".text1, .text2, .img").is(":animated") || _imgBoxNext.find(".text1, .text2, .img").is(":animated"))) {
                    //当前帧动画
                    _curText1.animate({
                        left: parseInt(_curText1.css("left")) + 100
                    }, opts.animateTime * 0.6, function() {
                        _curText1.animate({
                            left: "-510px"
                        }, opts.animateTime);
                    });
                    setTimeout(function() {
                        _curText2.animate({
                            left: parseInt(_curText2.css("left")) + 100
                        }, opts.animateTime * 0.6, function() {
                            _curText2.animate({
                                left: "-510px"
                            }, opts.animateTime);
                        });
                    }, 200);
                    setTimeout(function() {
                        _curImg.animate({
                            left: parseInt(_curImg.css("left")) + 200
                        }, opts.animateTime * 0.6, function() {
                            _curImg.animate({
                                left: "-510px"
                            }, opts.animateTime, function() {
                                _imgBox.find(".text1, .text2, .img").css("left", widthWin);
                                _imgBoxCur.removeClass("present");
                            });
                        });
                    }, 400);
                    //下一帧动画
                    setTimeout(function() {
                        _imgBoxNext.addClass("present");
                        _nextText1.animate({
                            left: (widthWin - 980) / 2 - 100
                        }, opts.animateTime, function() {
                            _nextText1.animate({
                                left: (widthWin - 980) / 2
                            }, opts.animateTime * 0.6);
                        });
                        setTimeout(function() {
                            _nextText2.animate({
                                left: (widthWin - 980) / 2 - 100
                            }, opts.animateTime, function() {
                                _nextText2.animate({
                                    left: (widthWin - 980) / 2
                                }, opts.animateTime * 0.6);
                            });
                        }, 200);
                        setTimeout(function() {
                            _nextImg.animate({
                                left: (widthWin - 980) / 2 + 370
                            }, opts.animateTime, function() {
                                _nextImg.animate({
                                    left: (widthWin - 980) / 2 + 470
                                }, opts.animateTime * 0.6, function() {
                                    index++;
                                    if(index >= size) {
                                        index = 0;
                                    }
                                    _imgBoxCur = _imgBox.filter(".present");
                                    _imgBoxNext = _imgBox.eq(index);
                                    _curText1 = _imgBoxCur.find(".text1");
                                    _curText2 = _imgBoxCur.find(".text2");
                                    _curImg = _imgBoxCur.find(".img");
                                    _nextText1 = _imgBoxNext.find(".text1");
                                    _nextText2 = _imgBoxNext.find(".text2");
                                    _nextImg = _imgBoxNext.find(".img");
                                });
                            });
                        }, 400);
                    }, opts.density * 1200);
                }
            }
        });
    };
})(jQuery);

$(function() {
    $(".animateSlide").animateSlide({
        btnL: ".animateSlideBtnL",
        btnR: ".animateSlideBtnR",
        imgBox: ".animateSlideImgBox",
        animateTime: 500,
        delayTime: 6000,
        density: 0.9
    });
});
时间: 2024-11-10 13:23:18

全新jquery多点滑动幻灯片——全屏动画animateSlide的相关文章

基于js全屏动画焦点图幻灯片

今天给大家分享一款基于js全屏动画焦点图幻灯片.这款焦点图内的内容以动画形式出现和消失.效果图如下: 在线预览   源码下载 实现的代码. html代码: <div class="slideshow" id="slideshow"> <ol class="slides"> <li class="current"> <div class="description"&g

JS框架_(jQuery.js)文章全屏动画切换

文章全屏动画切换效果 <!doctype html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="

基于jQuery带进度条全屏图片轮播代码

基于jQuery带进度条全屏图片轮播代码.这是一款基于jQuery实现的oppo手机官网首页带进度条全屏图片轮播特效.效果图如下: 在线预览   源码下载 实现的代码. html代码: <div class="pic"> <ul> <li style="background: url(images/bg1.jpg) center;"> <img src="images/con1.png"> <

jQuery高性能跨浏览器全屏幻灯片特效插件

Nex是一款效果炫酷的.高性能的跨浏览器全屏幻灯片特效jQuery插件.该幻灯片插件允许你嵌入图片.视频,甚至是谷歌地图.该幻灯片提供了7组共34种不同的效果,可以使你适用于任何场景下使用. 它的特点有: 幻灯片外观可以自定义 优化速度 支持移动触摸设备 支持键盘导航 支持选择各种Pattern 对SEO优化十分友好 10种类型效果:Fade, Slide [left,right,top,bottom], Zoom, Skew, Rotate, Random, None 5种颜色主题:ameth

jQuery支持mobile的全屏水平横向翻页效果

这是一款支持移动手机mobile设备的jQuery全屏水平横向翻页效果插件.该翻页插件可以使页面在水平方向上左右全屏翻动,它支持手机触摸屏,支持使用鼠标滚动页面. 整个页面过渡平滑,效果非常不错. 在线演示:http://www.htmleaf.com/Demo/201503141519.html 下载地址:http://www.htmleaf.com/jQuery/Layout-Interface/201503141518.html

JQuery之滑动幻灯片插件Easy Slider初体验

Easy Slider 是一个滑动幻灯片插件,支持任何图片或内容,可以实现横向或纵向滑动.它拥有一系列丰富的参数设置,可通过CSS来进行完全的控制.基本上只需要引入这个插件后,设置好内容,然后样式化CSS就可以自定义了. 小编这里用来做了轮播图,首先将其下载好. 习惯性下载最新版1.7.下载到的是压缩包,解压之. 发现有三个不同样式的html页面.打开第一个: 图片有问题,不知道怎么办.一般情况只会刷新浏览器,没有变化,心里烦躁,接着刷新吧...刷新大约6次,页面正常了. 现在可以自行修改了,动

jQuery全屏动画焦点图

效果:http://hovertree.com/texiao/jqimg/3/ 本效果使用 jquery-1.8.3.min.js,如需使用1.12.3版本,需进行修改. 全部版本jQuery下载:http://hovertree.com/h/bjaf/ati6k7yk.htm 每个轮播界面由若干图组成,图片随轮播动态载入,成为动画. 下载:http://hovertree.com/h/bjaf/8tum0nci.htm 代码如下: <!DOCTYPE html> <html> &

jquery动态背景切换全屏登录插件supersized.js

下载地址:https://download.csdn.net/download/t101lian/10434198 预览: http://www.daimabiji.com/codedemo/1530 http://www.jq22.com/jquery-info3153 jQuery jQuery(function($){ $.supersized({ // Functionality slide_interval : 5000, // Length between transitions t

一个酷炫的,基于HTML5,Jquery和Css的全屏焦点图特效,兼容各种浏览器

基于HTML5和CSS的焦点图特效,梅花图案的背景很有中国特色,而且还会动哦,效果超炫,推荐下载! 演示图 html代码 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www.w3.org/199