自定義swiper 放大縮小無限輪播

前言:在微信小程序網(wǎng)絡(luò)風(fēng)靡之時(shí)愉棱,支付寶翎蹈,淘寶小程序網(wǎng)上能搜得資料簡(jiǎn)直不要太少
哭.png

這個(gè)是我在用官方組件然后對(duì)之無可奈何之后的解決方法-----人工封裝(對(duì)不起分别,我太菜了),已經(jīng)不是swiper了存淫,標(biāo)題黨請(qǐng)移步耘斩。
正題開始吧,這是一個(gè)組件桅咆,先給出調(diào)用方法

 <infinite-scroll 
              banner="{{data.resultArr.goods}}"
              itemWidth="{{233}}"
              itemHeight="{{296}}"
              collectionurl="{{data.collection.url}}"
              autoplay="{{true}}"
              duration="{{0.5}}"
              interval="{{3}}"
              scale="{{0.8}}"
              onGoCollection="goCollection" 
        ></infinite-scroll>
<!--onGoCollection這個(gè)是我自定義方法括授,請(qǐng)自行選取-->

調(diào)用的有了,現(xiàn)在上正餐
創(chuàng)建一個(gè)組件岩饼,組件名稱愛誰誰
首先是.acss文件

.com-swiper-container { position: relative; width: 100%; margin: 0 auto; overflow: hidden;}
.com-swiper-wrapper { position: relative; width: 100%; overflow: hidden;}
.com-swiper-content { display: flex; width: 100%; will-change: transform;}
.com-swiper-slide { display: flex; flex-direction: column; justify-content: center; align-items: center; flex-shrink: 0; width: 570rpx; height: 310rpx; overflow: hidden;}
.com-swiper-slide .image { display: block; width: 100%; font-size: 0; border: 0;}
.com-swiper-bullet { display: flex; justify-content: center; align-items: center; width: 100%; height: 50rpx; overflow: hidden;}
.com-swiper-bullet .touch-bullet { width: 20rpx; height: 20rpx; margin: 0 5rpx; border-radius: 50%;}
.com-swiper-bullet .touch-bullet .bullet { display: flex; justify-content: center; align-items: center; width: 100%; height: 100%; border-radius: 50%; overflow: hidden;}
.com-swiper-bullet .touch-bullet .normal { background: #000;}
.com-swiper-bullet .touch-bullet .active { background: #ff0000;}

其次是.axml文件

<view class="com-swiper-container">
    <view class="com-swiper-wrapper">
        <view class="com-swiper-content" style="width:{{len*itemWidth}}rpx;transform:translateX({{-currentIndex*itemWidth+(750-itemWidth)/2}}rpx);{{effect}}" onTouchStart="touchStart" onTouchEnd="touchEnd">
            <block a:for="{{swiperData}}">
                <view class="com-swiper-slide" style="{{`width:${itemWidth}rpx;height:${itemHeight}rpx;${currentIndex==index?active:normal}`}}">
                    <image class="image" mode="widthFix" src="{{item.image&&item.image.src}}"/>
                </view>
            </block>
        </view>
    </view>
    <view class="com-swiper-bullet">
        <block a:for="{{swiperData}}" a:for-index="index" a:for-item="item">
            <view class="touch-bullet" a:if="{{index>=initIndex&&index<initIndex*2}}" data-index="{{index}}" onTap="handleBullet">
                <view class="bullet normal" a:if="{{currentIndex!=index}}"></view>
                <view class="bullet active" a:if="{{currentIndex==index}}"></view>
            </view>
        </block>
    </view>
</view>

然后這里是.js文件

//防止反跳
function debounce(func, wait, immediate) {
   let timer;
   return function () {
       let context = this, args = arguments;
       if (timer) clearTimeout(timer);
       if (immediate) {
           let callNow = !timer;
           timer = setTimeout(() => {
               timer = null;
           }, wait);
           if (callNow) func.apply(context, args);
       } else {
           timer = setTimeout(() => {
               func.apply(context, args);
           }, wait)
       }
   }
}
//判斷數(shù)據(jù)類型
function isType(target) {
   if (target === null) return 'null';
   var result = typeof (target);
   if (result === 'object') {
       var str = Object.prototype.toString.call(target);
       var obj = {
           '[object Array]': 'array',
           '[object Object]': 'object',
           '[object Number]': 'objectNumber',
           '[object Boolean]': 'objectBoolean',
           '[object String]': 'objectString',
       }
       return obj[str];
   } else {
       return result;
   }
}
//復(fù)制
function copy(data, loop) {
   let temp = data;
   let type = isType(data);
   for (var i = 0; i < loop - 1; i++) {
       if (type == "array" || type == "string") {
           data = data.concat(temp);
       }
   }
   return data;
}
var startX = 0, endX = 0;
Component({
   mixins: [],
   data: {
       currentIndex: null,//當(dāng)前輪播位置序號(hào)
       initIndex: '',//初始放大元素序號(hào) 默認(rèn)3
       effect: '',//切換效果
       normal: '',//初始樣式
       active: '',//當(dāng)前放大樣式
   },
   props: {
       banner: [
           { "image": { "src": "https://img.alicdn.com/imgextra/i1/907349826/O1CN01fQq7ea2MSMNGya0o6_!!907349826.png" }, "url": "", "pop1": "", "pop2": "", "popw": "" },
           { "image": { "src": "https://img.alicdn.com/imgextra/i1/907349826/O1CN01wW0pxi2MSMNAig3Qn_!!907349826.png" }, "url": "", "pop1": "", "pop2": "", "popw": "" },
           { "image": { "src": "https://img.alicdn.com/imgextra/i1/907349826/O1CN01PNFPtL2MSMNLfK1Vk_!!907349826.png" }, "url": "", "pop1": "", "pop2": "", "popw": "" },
       ],
       autoplay: false,//是否自動(dòng)輪播
       duration: 0.5,//持續(xù)時(shí)間
       interval: 3,//間隔時(shí)間
       scale: 0.9,//縮放比率
       direction: 'left',//自動(dòng)輪播方向
   },
   didMount() {
       let { banner, scale, duration } = this.props;
       let swiperData = copy(banner, 3);
       let len = swiperData.length;
       let initIndex = len / 3;

       this.setData({
           'len': len,
           'initIndex': initIndex,
           'currentIndex': initIndex,
           'swiperData': swiperData,
           'normal': `transform:scale(${scale});transition:all ${duration}s linear 0s;`
       }, () => {
           ['slideLeft', 'slideRight', 'handleBullet'].forEach(it => {
               this[it] = debounce(this[it], duration * 1000, true);
           });
           //自動(dòng)切換
           this.slideAutoPlay();
       });
   },
   didUpdate() { },
   didUnmount() { },
   methods: {
       //觸摸開始
       touchStart(e) {
           startX = e.changedTouches[0].clientX;
       },
       //觸摸結(jié)束
       touchEnd(e) {
           this.slideAutoPlay();
           endX = e.changedTouches[0].clientX;
           if (Math.abs(endX - startX) < 50) { return }
           if (endX - startX < 0) {
               endX = 0, startX = 0;
               return this.slideLeft();
           }
           endX = 0, startX = 0;
           return this.slideRight();
       },
       //左滑
       slideLeft() {
           let { duration } = this.props;
           let effect = `transition:${duration}s all;`, len = this.data.len, loopIndex = len / 3;
           let currentIndex = this.data.currentIndex + 1;

           this.setData({
               currentIndex,
               effect,
               active: `transition:all ${duration}s linear 0s;`
           }, () => {
               if (currentIndex == len / 3 * 2) {
                   //this.setData({ loopIndex });
                   setTimeout(() => {
                       this.setData({
                           'currentIndex': loopIndex,
                           'effect': ``,
                           'active': ``,
                           'loopIndex': null
                       })
                   }, duration * 1000);
               }
           })
       },
       //右滑
       slideRight() {
           let { duration } = this.props;
           let effect = `transition:${duration}s all;`, len = this.data.len, loopIndex = (len / 3 * 2) - 1;
           let currentIndex = this.data.currentIndex - 1;

           this.setData({
               currentIndex,
               effect,
               active: `transition:all ${duration}s linear 0s;`
           }, () => {
               if (currentIndex == len / 3 - 1) {
                   //this.setData({ loopIndex });
                   setTimeout(() => {
                       this.setData({
                           'currentIndex': loopIndex,
                           'effect': ``,
                           'active': ``,
                           'loopIndex': null
                       })
                   }, duration * 1000);
               }
           })
       },
       //開始自動(dòng)播放
       slideAutoPlay() {
           let { interval, autoplay, direction } = this.props;
           if (this.timer) {
               clearInterval(this.timer);
               clearTimeout(this.timer);
           }
           if (autoplay == true) {
               this.timer = setInterval(() => {
                   if (direction == "left") {
                       return this.slideLeft();
                   } else {
                       return this.slideRight();
                   }
               }, interval * 1000)
           }
       },
       //點(diǎn)擊觸點(diǎn)
       handleBullet(e) {
           let { target: { dataset } } = e;
           let { duration } = this.props;
           this.setData({
               'currentIndex': dataset.index,
               'effect': `transition:${duration}s all;`,
               'active': `transform:scale(1);transition:all ${duration}s linear 0s;`,
               'loopIndex': null
           }, () => { })
       },
   }
});

結(jié)語:菜狗就到這里了荚虚,有好的方法什么的,大家評(píng)論區(qū)踴躍發(fā)言吧

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末忌愚,一起剝皮案震驚了整個(gè)濱河市曲管,隨后出現(xiàn)的幾起案子却邓,更是在濱河造成了極大的恐慌硕糊,老刑警劉巖,帶你破解...
    沈念sama閱讀 207,113評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件腊徙,死亡現(xiàn)場(chǎng)離奇詭異简十,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)撬腾,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評(píng)論 2 381
  • 文/潘曉璐 我一進(jìn)店門螟蝙,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人民傻,你說我怎么就攤上這事胰默。” “怎么了漓踢?”我有些...
    開封第一講書人閱讀 153,340評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵牵署,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我喧半,道長(zhǎng)奴迅,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,449評(píng)論 1 279
  • 正文 為了忘掉前任挺据,我火速辦了婚禮取具,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘扁耐。我一直安慰自己暇检,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,445評(píng)論 5 374
  • 文/花漫 我一把揭開白布婉称。 她就那樣靜靜地躺著块仆,像睡著了一般心墅。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上榨乎,一...
    開封第一講書人閱讀 49,166評(píng)論 1 284
  • 那天怎燥,我揣著相機(jī)與錄音,去河邊找鬼蜜暑。 笑死铐姚,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的肛捍。 我是一名探鬼主播隐绵,決...
    沈念sama閱讀 38,442評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼拙毫!你這毒婦竟也來了依许?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,105評(píng)論 0 261
  • 序言:老撾萬榮一對(duì)情侶失蹤缀蹄,失蹤者是張志新(化名)和其女友劉穎峭跳,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體缺前,經(jīng)...
    沈念sama閱讀 43,601評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡蛀醉,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,066評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了衅码。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片拯刁。...
    茶點(diǎn)故事閱讀 38,161評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖逝段,靈堂內(nèi)的尸體忽然破棺而出垛玻,到底是詐尸還是另有隱情,我是刑警寧澤奶躯,帶...
    沈念sama閱讀 33,792評(píng)論 4 323
  • 正文 年R本政府宣布帚桩,位于F島的核電站,受9級(jí)特大地震影響巫糙,放射性物質(zhì)發(fā)生泄漏朗儒。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,351評(píng)論 3 307
  • 文/蒙蒙 一参淹、第九天 我趴在偏房一處隱蔽的房頂上張望醉锄。 院中可真熱鬧,春花似錦浙值、人聲如沸恳不。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽烟勋。三九已至规求,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間卵惦,已是汗流浹背阻肿。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評(píng)論 1 261
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留沮尿,地道東北人丛塌。 一個(gè)月前我還...
    沈念sama閱讀 45,618評(píng)論 2 355
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像畜疾,于是被迫代替她去往敵國(guó)和親赴邻。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,916評(píng)論 2 344

推薦閱讀更多精彩內(nèi)容