jquery实现同时展示多个tab标签+左右箭头实现来回滚动(美化版增加删除按钮)...

 闲聊

       前段时间小颖分享了:jquery实现同时展示多个tab标签+左右箭头实现来回滚动文章,引入项目后,我们的组长说样子太丑了,小颖觉得还好啊,要不大家评评理,看下丑不丑?无图无真相,来上图:

     看吧其实不丑对不对?嘻嘻,那看完旧版本的来看看新的:

其实 这个js还是调用之前的jquery.gallery.js不过小颖根据新的页面做了一些改变,之前是通过改变ul 元素的   left,实现左右滑动的,现在是通过改变 ul   元素的 margin-left。废话不多说,我们一起来看看改了之后得效果图吧:

      这下好看多了吧嘻嘻,接下来小颖给大家上代码:

代码

目录还是没变:

index.html:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <link href="css/master.css" rel="stylesheet"/>
    <link href="css/font-awesome.min.css" rel="stylesheet"/>
    <script src="js/jquery-1.8.2.js"></script>
    <script src="js/jquery.gallery.js"></script>
    <script src="js/angular.js" charset="utf-8"></script>
    <script>
        jQuery(function () {
            var options = {  //所有属性都可选
                duration: 500,  //单张图片轮播持续时间
                interval: 5000,  //图片轮播结束到下一张图片轮播开始间隔时间
                galleryClass: "gallery", //画廊class
                bindE: true
            }
            $(".wrapper").gallery(options);
        });
        let mod = angular.module('test', []);
        mod.controller('main', function ($scope) {
            $scope.ceshi = [{
                id: 1,
                name: '系统首页',
                isSelect: false
            }, {
                id: 2,
                name: '客户信息',
                isSelect: false
            }, {
                id: 3,
                name: '客户信2',
                isSelect: false
            }, {
                id: 4,
                name: '客户信3',
                isSelect: false
            }, {
                id: 5,
                name: '客户信4',
                isSelect: false
            }, {
                id: 6,
                name: '系统首2',
                isSelect: false
            }, {
                id: 7,
                name: '客户信5',
                isSelect: false
            }, {
                id: 8,
                name: '客户信6',
                isSelect: false
            }, {
                id: 9,
                name: '客户信7',
                isSelect: false
            }, {
                id: 10,
                name: '系统首3',
                isSelect: false
            }, {
                id: 11,
                name: '客户信8',
                isSelect: false
            }, {
                id: 12,
                name: '客户信9',
                isSelect: false
            }, {
                id: 13,
                name: '客户信1',
                isSelect: false
            }, {
                id: 14,
                name: '客户信2',
                isSelect: false
            }, {
                id: 15,
                name: '系统首3',
                isSelect: false
            }, {
                id: 16,
                name: '客户信4',
                isSelect: false
            }, {
                id: 17,
                name: '客户信5',
                isSelect: false
            }];
            $scope.closeFun = function (index) {
                $scope.ceshi.splice(index, 1);
                var left = parseInt($("div.gallery>ul").css("margin-left"));
                if (left <= -(parseInt(liWidth) + 5)) {
                    $('div.gallery').find("ul").animate({'margin-left': "+=" + (parseInt(liWidth) + 5) + "px"}, 500);
                }
                var options = {  //所有属性都可选
                    duration: 500,  //单张图片轮播持续时间
                    interval: 5000,  //图片轮播结束到下一张图片轮播开始间隔时间
                    galleryClass: "gallery",  //画廊class
                    bindE: false//是否触发bindEvent事件
                }
                $(".wrapper").gallery(options);
            }
            $scope.selectFun = function (index) {
                $scope.ceshi.forEach(function (item) {
                    item.isSelect = false;
                });
                $scope.ceshi[index].isSelect = true;
            }
        });
    </script>
</head>
<body ng-app="test">
<div class="wrapper" ng-controller="main">
    <div class="gallery">
        <ul class="nav nav-tabs">
            <li ng-repeat="names in ceshi" ng-click="selectFun($index)"
                ng-class="{true:'active',false:''}[names.isSelect]">
                <a>
                    <span>{{names.name}}</span>
                    <i class="fa fa-close" ng-click="closeFun($index)"></i></a>
            </li>
        </ul>
    </div>
</div>
</body>
</html>

jquery.gallery.js

(function ($) {
    $.fn.extend({
        "gallery": function (options) {
            if (!isValid(options))
                return this;
            opts = $.extend({}, defaults, options);

            return this.each(function () {
                var $this = $(this);
                var liNum = $this.children("." + opts.galleryClass).find("li").length;  //图片总张数
                var galleryWidth = $this.children("." + opts.galleryClass).width();  //展示图片部分宽度
                var liWidth = $this.children("." + opts.galleryClass).find("li").width();  //每张图片的宽度
                $this.prepend("<a class='prev roll-nav roll-nav-left'><span class='fa fa-backward'></span></a>");
                $this.append("<a class='next roll-nav roll-nav-right'><span class='fa fa-forward'></span></a>");
                assignImgWidth = parseInt(liWidth) + 5;  //给每张图片分配的宽度
                $this.find("li").css({'margin-right': 3 + "px"});
                var ulWidth = liNum * (liWidth + 5);  //ul的总宽度
                $this.find("ul").width(ulWidth);
                hiddenWidth = ulWidth - galleryWidth;  //超出图片显示部分的宽度
                if (opts.bindE) {
                    bindEvent($this, 0);
                }
            });
        }
    });
    var opts, assignImgWidth, hiddenWidth;
    var defaults = {
        duration: 500,  //单张图片轮播持续时间
        interval: 5000,  //图片轮播结束到下一张图片轮播开始间隔时间
        galleryClass: "gallery"  //画廊class
    };

    function isValid(options) {
        return !options || (options && typeof options === "object") ? true : false;
    }

    function bindEvent($this, t) {
        $this.children(".next").click(function () {
            rightScroll($this, t);
        });
        $this.children(".prev").click(function () {
            leftScroll($this, t);
        });
    }

    function unbindEvent($this, t) {
        $this.children(".next").unbind("click");
        $this.children(".prev").unbind("click");
    }

    function rightScroll($this, t) {
        clearTimeout(t);
        unbindEvent($this, t);
        var left = parseInt($this.find("ul").css("margin-left"));
        if (left > -hiddenWidth)
            $this.find("ul").animate({'margin-left': "-=" + assignImgWidth + "px"}, opts.duration, function () {
                bindEvent($this, t);
            });
        else
            $this.find("ul").animate({}, opts.duration, function () {
                bindEvent($this, t);
            });
        // var t=setTimeout(function(){rightScroll($this,t);},opts.interval+opts.duration);
    }

    function leftScroll($this, t) {
        clearTimeout(t);
        unbindEvent($this, t);
        var left = parseInt($this.find("ul").css("margin-left"));
        if (left < 0)
            $this.find("ul").animate({'margin-left': "+=" + assignImgWidth + "px"}, opts.duration, function () {
                bindEvent($this, t);
            });
        else
            $this.find("ul").animate({}, opts.duration, function () {
                bindEvent($this, t);
            });
        // var t=setTimeout(function(){rightScroll($this,t);},opts.interval+opts.duration);
    }
})(window.jQuery);

master.css

* {
    margin: 0;
    padding: 0;
}

.wrapper {
    position: relative;
    width: 1050px;
    margin: auto;
    margin-top: 100px;
    height: 42px;
    line-height: 40px;
    background-color: #f5f3f3;
}

.wrapper .gallery {
    margin-left: 46px;
    overflow: hidden;
    height: 42px;
    transition: margin-left 1s;
    -moz-transition: margin-left 1s;
    -webkit-transition: margin-left 1s;
    -o-transition: margin-left 1s;
}

.wrapper .gallery ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 0;
    overflow: hidden;
}

.wrapper .gallery ul.nav-tabs > li {
    width: 113px;
    float: left;
    position: relative;
    display: block;
    background-color: #e8e5e5;
    border: 1px solid #E7E7E7;
}

.wrapper .roll-nav.roll-nav-left {
    left: 0;
}

.wrapper .roll-nav.roll-nav-right {
    right: 0;
}

.wrapper .roll-nav {
    position: absolute;
    width: 40px;
    height: 40px;
    text-align: center;
    color: #999;
    background-color: #e8e5e5;
    border: 1px solid #E7E7E7;
    z-index: 2;
    top: 0;
}

.wrapper a.roll-nav:hover {
    color: #797979;
    background-color: #fff;
}

/*.wrapper a.roll-nav:active, .wrapper a.roll-nav:visited {*/
/*color: #95A0AA;*/
/*}*/
.nav-tabs > li > a {
    color: #76838f;
    position: relative;
    display: block;
    padding: 10px 15px;
    padding-bottom: 12px;
    margin-right: 0;
    line-height: 20px;
    cursor: default
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
    background-color: #fff;
    -webkit-transition-property: background-color, border-bottom;
    -webkit-transition-duration: .2s;
    -webkit-transition-timing-function: ease;
    -moz-transition-property: background-color, border-bottom;
    -moz-transition-duration: .2s;
    -moz-transition-timing-function: ease;
    -o-transition-property: background-color, border-bottom;
    -o-transition-duration: .2s;
    -o-transition-timing-function: ease;
}

.nav > li > a:focus, .nav > li > a:hover {
    background-color: #fff;
}

参考

 css参考:Bootstrap多功能自定义选项卡插件

打赏打赏:

 

转载于:https://www.cnblogs.com/yingzi1028/p/10031515.html

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值