focus.vue
1.47 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
<template>
<div class="focus-floor">
<swipe class="swipe swipe-{{floor.length}}">
<swipe-item v-for="item in floor" :style="{backgroundColor: item.bgColor}">
<a href="{{item.url}}" title="{{item.title}}">
<img :src="item.src | resize 750 365">
</a>
</swipe-item>
</swipe>
</div>
</template>
<script>
require('vue-swipe/dist/vue-swipe.css');
const swipe = require('vue-swipe');
module.exports = {
props: ['floor'],
components: {
swipe: swipe.Swipe,
swipeItem: swipe.SwipeItem
}
};
</script>
<style>
.focus-floor {
.swipe {
position: relative;
height: 100%;
}
.swipe-1 {
.swipe-indicators {
display: none;
}
}
.swipe-item {
a {
display: block;
}
img {
width: 100%;
height: 100%;
}
}
.swipe-indicators {
left: initial;
right: 30px;
transform: none;
}
.swipe-indicator {
width: 8px;
height: 8px;
background: #ccc;
opacity: 1;
vertical-align: middle;
&.active {
width: 12px;
height: 12px;
background: #fff;
}
}
}
</style>