• swiper移动端全屏播放动态获取数据


    html:

     <link rel="stylesheet" href="css/swiper.min.css">
     
    <div class="swiper-container s-c">
            <div class="swiper-wrapper"></div>
            <!-- Add Pagination -->
            <div class="swiper-pagination"></div>
            <!-- Add Arrows -->
            <div class="swiper-button-next"></div>
            <div class="swiper-button-prev"></div>
    </div>
    <script src="js/swiper.min.js"></script>
     

    js:

    var vm = new Vue({
        el:'#app',
        data:{
            imgs:[
                {thumb:"https://goss.veer.com/creative/vcg/veer/800water/veer-308318668.jpg"},
                {thumb:"https://goss.veer.com/creative/vcg/veer/800water/veer-308318668.jpg"},
                {thumb:"https://goss.veer.com/creative/vcg/veer/800water/veer-308318668.jpg"},
                {thumb:"https://goss.veer.com/creative/vcg/veer/800water/veer-308318668.jpg"},
                {thumb:"https://goss.veer.com/creative/vcg/veer/800water/veer-308318668.jpg"},
                {thumb:"https://goss.veer.com/creative/vcg/veer/800water/veer-308318668.jpg"},
            ],
          
        },
        created: function(){
           
        },
        mounted:function(){
            var self = this;
            var imgs = self.imgs;
            for (var i = 0, len = imgs.length; i < len; i++) {
                var html = '<div class="swiper-slide"><img src="' + imgs[i].thumb + '"/></div>'
                $('.swiper-wrapper').append(html)
            }
            var swiper = new Swiper('.swiper-container', {
                pagination: {
                    el: '.swiper-pagination',
                    type: 'fraction',
                },
                loop: true,             //为 true循环
                autoplay: false,      //为 true自动播放到下一张
                init: true,          //为true自动执行,不用调用
                disableOnInteraction: false,
            });
    
        },
        methods:{
            
        },
        filters:{
            
        }
    
    })
  • 相关阅读:
    Best HTTP
    Unity3D游戏轻量级xlua热修复框架
    线段树
    7.1
    BZOJ 3011: [Usaco2012 Dec]Running Away From the Barn( dfs序 + 主席树 )
    BZOJ 3585: mex( 离线 + 线段树 )
    2015暑假集训
    BZOJ 3398: [Usaco2009 Feb]Bullcow 牡牛和牝牛( dp )
    BZOJ 2693: jzptab( 莫比乌斯反演 )
    2015.7.31
  • 原文地址:https://www.cnblogs.com/liubingyjui/p/12376223.html
Copyright © 2020-2023  润新知