forked from airyland/vux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMasker.vue
executable file
·84 lines (79 loc) · 2.05 KB
/
Masker.vue
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
<template>
<div>
<div style="margin: 10px;overflow: hidden;" v-for="item in list">
<masker style="border-radius: 2px;">
<div class="m-img" :style="{backgroundImage: 'url(' + item.img + ')'}"></div>
<div slot="content" class="m-title">
{{item.title}}
<br/>
<span class="m-time">2016-03-18</span>
</div>
</masker>
</div>
<div style="margin: 10px;overflow: hidden;">
<masker style="border-radius: 2px;" color="F9C90C" :opacity="0.8">
<div class="m-img" style="background-image:url(https://cdn.xiaotaojiang.com/uploads/56/4b3601364b86fdfd234ef11d8712ad/_.jpg)"></div>
<div slot="content" class="m-title">
VUX
<br/>
<span class="m-time">2016-03-18</span>
</div>
</masker>
</div>
</div>
</template>
<script>
import { Masker } from 'vux'
export default {
components: {
Masker
},
data () {
return {
list: [{
title: '洗颜新潮流!人气洁面皂排行榜',
img: 'https://cdn.xiaotaojiang.com/uploads/82/1572ec37969ee263735262dc017975/_.jpg'
}, {
title: '美容用品 & 日用品(上)',
img: 'https://cdn.xiaotaojiang.com/uploads/59/b22e0e62363a4a652f28630b3233b9/_.jpg'
}, {
title: '远离车内毒气,日本车载空气净化器精选',
img: 'https://cdn.xiaotaojiang.com/uploads/56/4b3601364b86fdfd234ef11d8712ad/_.jpg'
}]
}
}
}
</script>
<style lang="less">
.m-img {
padding-bottom: 33%;
display: block;
position: relative;
max-width: 100%;
background-size: cover;
background-position: center center;
cursor: pointer;
border-radius: 2px;
}
.m-title {
color: #fff;
text-align: center;
text-shadow: 0 0 2px rgba(0, 0, 0, .5);
font-weight: 500;
font-size: 16px;
position: absolute;
left: 0;
right: 0;
width: 100%;
text-align: center;
top: 50%;
transform: translateY(-50%);
}
.m-time {
font-size: 12px;
padding-top: 4px;
border-top: 1px solid #f0f0f0;
display: inline-block;
margin-top: 5px;
}
</style>