国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術文章
文章詳情頁

vue組件開發之slider組件使用詳解

瀏覽:153日期:2022-12-04 13:28:22

本文實例為大家分享了vue組件開發之slider組件的具體使用代碼,供大家參考,具體內容如下

vue組件開發之slider組件使用詳解

代碼如下:

<template> <div class='slider'> <div class='wrapbox'> <div v-for='(item, index) in items' style=''>{{item.title}}</div> </div> <div class='status'> <span v-for='(item, index) in items' v-bind:class='index == count ? ’active’ : ’’ '></span> </div> <div @click='prev()'><</div> <div @click='next()'>></div> </div></template><script> export default { name: ’slider’, data (){ return {count: 0,items:[{ name:'1', id:1, title:'我是圖1的內容'},{ name:'2', id:2, title:'我是圖2的內容'},{ name:'3', id:3, title:'我是圖3的內容'},{ name:'4', id:4, title:'我是圖4的內容'}] } }, components: { }, methods: { prev () {console.log(this.count);if(this.count > 0){ this.count--; document.querySelector('.wrapbox').style.webkitTransform = 'translateX(-' + (this.count * 400) + 'px)'; }else{ this.count = 0;} }, next () {console.log(this.count);if(this.count < 3){ this.count++; document.querySelector('.wrapbox').style.webkitTransform = 'translateX(-' + (this.count * 400) + 'px)'; }else{ this.count = 3;} } }, created () { } }</script><style scoped> *{margin:0 auto;padding:0;font-family:'微軟雅黑';} .slider{ position:relative; height:200px; width:400px; margin:50px auto; overflow:hidden; } .slider .wrapbox{ width:1600px; height:200px; transition:all 1.5s; } .slider .status{ position:absolute; top:170px; height:20px; width:400px; text-align:center; } .slider .status span{ display:inline-block; height:20px; width:20px; margin:0 10px; background:#eee; border-radius:10px; } .slider .status span.active{ background:#352929; } .slider .wrapbox .item{ float:left; height:200px; width:400px; line-height:200px; text-align:Center; color:#fff; font-size:25px; background:red; } .slider .wrapbox .item:nth-of-type(2){ background:blue; } .slider .wrapbox .item:nth-of-type(3){ background:yellow; } .slider .wrapbox .item:nth-of-type(4){ background:green; } .slider .btn{ position:absolute; top:50%; height:40px; width:20px; line-height:40px; color:#fff; text-align:center; background:rgba(10, 10, 10, .85); transform:translateY(-50%); cursor:pointer; } .slider .next-btn{ right:0; }</style>

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: Vue
相關文章:
主站蜘蛛池模板: 宝应县| 云安县| 安徽省| 波密县| 锡林郭勒盟| 巴林左旗| 德清县| 丰顺县| 拜泉县| 永年县| 新和县| 柘荣县| 沧源| 洞头县| 通江县| 元阳县| 大田县| 和顺县| 牡丹江市| 南平市| 抚远县| 昌都县| 临安市| 崇文区| 府谷县| 长岛县| 台中市| 洛阳市| 巴青县| 丽江市| 乡宁县| 互助| 南陵县| 永川市| 九龙城区| 中阳县| 沾益县| 屯昌县| 淅川县| 怀宁县| 清原|