resource-focus-image.vue
2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<template>
<div class="focus-image">
<awesome-swiper name="mySwiper" :options="swiperOption" class="swipe">
<div class="swiper-wrapper" @click="activeLink">
<div class="swiper-slide"
v-for="focus in value"
:key="focus.src"
:style="{backgroundColor: focus.bgColor}">
<img-format :src="focus.src" :w="375" :h="240"></img-format>
</div>
</div>
<div class="swiper-pagination"></div>
</awesome-swiper>
<a-link ref="linkA" :href="activeHref"></a-link>
</div>
</template>
<script>
import Resource from './resource';
export default {
name: 'ResourceFocusImage',
props: {
value: Array
},
data() {
return {
activeHref: '',
swiperOption: {
loop: true,
autoplay: true,
pagination: {
el: '.swiper-pagination'
}
}
};
},
methods: {
activeLink() {
const img = this.value[this.mySwiper.realIndex];
if (img) {
this.activeHref = img.url;
this.$nextTick(() => {
this.$refs.linkA.click();
});
}
}
},
components: {Resource}
};
</script>
<style lang="scss">
.focus-image {
height: 480px;
overflow: hidden;
.swipe {
position: relative;
height: 100%;
}
.swiper-slide {
a {
display: block;
}
img {
width: 100%;
height: 100%;
}
}
.swiper-pagination-bullet {
width: 10px;
height: 10px;
background: #e0e0e0;
opacity: 1;
border-radius: 0;
&.swiper-pagination-bullet-active {
width: 20px;
background: #fff;
}
}
}
</style>