| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- <template>
- <div id="index-banner">
- <div class="i-b-container">
- <transition-group tag="div" class="part-box" name="listNext" v-show="isLeft">
- <div
- class="b-c-part"
- v-for="(list,index) in bannerData"
- :key="list.bannerId"
- v-show="index === currentIndex"
- @mouseenter="stop"
- @mouseleave="go"
- >
- <a :href="list.href" target="_blank" :rel="list.ref">
- <img :src="list.bannerSrc" :alt="list.bannerAlt">
- </a>
- </div>
- </transition-group>
- <transition-group tag="div" class="part-box" name="listPrev" v-show="!isLeft">
- <div
- class="b-c-part"
- v-for="(list,index) in bannerData"
- :key="list.bannerId"
- v-show="index === currentIndex"
- @mouseenter="stop"
- @mouseleave="go"
- >
- <a :href="list.href" target="_blank" :rel="list.ref">
- <img :src="list.bannerSrc" :alt="list.bannerAlt">
- </a>
- </div>
- </transition-group>
- </div>
- <div class="i-b-tab">
- <ul>
- <li
- v-for="(item,index) in bannerData"
- :key="index"
- :class="{active: index === currentIndex}"
- @click="change(index)"
- ></li>
- </ul>
- </div>
- <div class="i-b-btn">
- <div class="btn-pre" @click="prev" @mouseenter="stop" @mouseleave="go"></div>
- <div class="btn-next" @click="next" @mouseenter="stop" @mouseleave="go"></div>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: "VBanner",
- props: {
- //bannerData为对象,里面的data属性包含着图片的数组
- bannerData: {
- type: Array,
- required: true,
- },
- },
- data() {
- return {
- isLeft: true,
- currentIndex: 0,
- timer: "",
- clickTime: 0,
- };
- },
- created() {
- //在DOM加载完成后,下个tick中开始轮播
- this.$nextTick(() => {
- this.timer = setInterval(() => {
- this.autoPlay();
- }, 4000);
- });
- },
- methods: {
- go() {
- this.timer = setInterval(() => {
- this.autoPlay();
- }, 4000);
- },
- stop() {
- clearInterval(this.timer);
- this.timer = null;
- },
- change(index) {
- this.currentIndex = index;
- },
- autoPlay() {
- this.isLeft = true;
- this.currentIndex++;
- if (this.currentIndex > this.bannerData.length - 1) {
- this.currentIndex = 0;
- }
- },
- prev() {
- if (new Date() - this.clickTime > 850) {
- this.isLeft = false;
- this.currentIndex--;
- if (this.currentIndex < 0) {
- this.currentIndex = this.bannerData.length - 1;
- }
- this.clickTime = new Date();
- }
- },
- next() {
- if (new Date() - this.clickTime > 850) {
- this.isLeft = true;
- this.currentIndex++;
- if (this.currentIndex > this.bannerData.length - 1) {
- this.currentIndex = 0;
- }
- this.clickTime = new Date();
- }
- },
- },
- };
- </script>
- <style scoped>
- #index-banner {
- position: relative;
- overflow: hidden;
- width: 100%;
- height: 700px;
- }
- .i-b-container {
- position: relative;
- width: 1200px;
- height: 100%;
- margin: 0 auto;
- }
- .i-b-tab {
- position: absolute;
- left: 50%;
- bottom: 27px;
- width: 62px;
- height: 10px;
- margin-left: -30px;
- }
- .b-c-part {
- position: absolute;
- top: 0;
- left: 50%;
- overflow: hidden;
- width: 1920px;
- height: 100%;
- margin-left: -960px;
- }
- .b-c-part img {
- display: block;
- width: 100%;
- height: 100%;
- }
- .i-b-btn {
- position: relative;
- width: 1200px;
- margin: 0 auto;
- }
- .btn-pre {
- position: absolute;
- top: -340px;
- left: -155px;
- width: 18px;
- height: 21px;
- background: url('~assets/images/index/banner-btn-pre.png') center center no-repeat;
- cursor: pointer;
- }
- .btn-next {
- position: absolute;
- top: -340px;
- right: -155px;
- width: 18px;
- height: 21px;
- background: url('~assets/images/index/banner-btn-next.png') center center no-repeat;
- cursor: pointer;
- }
- .btn-pre:hover {
- background: url('~assets/images/index/banner-btn-pre-cur.png') center center no-repeat;
- }
- .btn-next:hover {
- background: url('~assets/images/index/banner-btn-next-cur.png') center center no-repeat;
- }
- .listNext-enter-to {
- transition: all 1s ease;
- transform: translateX(0);
- }
- .listNext-leave-active {
- transition: all 1s ease;
- transform: translateX(-100%);
- }
- .listNext-enter {
- transform: translateX(100%);
- }
- .listNext-leave {
- transform: translateX(0);
- }
- .listPrev-enter-to {
- transition: all 1s ease;
- transform: translateX(0);
- }
- .listPrev-leave-active {
- transition: all 1s ease;
- transform: translateX(100%);
- }
- .listPrev-enter {
- transform: translateX(-100%);
- }
- .listPrev-leave {
- transform: translateX(0);
- }
- </style>
|