赞
踩
- <template>
- <div>
- <div class="item" v-for="(item,index) in list" :key="index">
- <img src="../../../../aa.png" alt="">
- <div class="num">{{(index+1) < 10 ? '0'+(index+1) : index+1 }}</div>
- <div class="title">{{item}}</div>
- <div class="go"></div>
- </div>
- </div>
- </template>
-
- <script>
- export default {
- data () {
- return {
- list: [
- '抽烟喝酒烫头,抽烟喝酒烫头,抽烟喝酒烫头,抽烟喝酒烫头',
- '抽烟喝酒烫头,抽烟喝酒烫头,抽烟喝酒烫头,抽烟喝酒烫头',
- '抽烟喝酒烫头,抽烟喝酒烫头,抽烟喝酒烫头,抽烟喝酒烫头',
- '抽烟喝酒烫头,抽烟喝酒烫头,抽烟喝酒烫头,抽烟喝酒烫头',
- '抽烟喝酒烫头,抽烟喝酒烫头,抽烟喝酒烫头,抽烟喝酒烫头'
- ]
- }
- }
- }
- </script>
-
- <style lang="less" scoped>
- .item {
- display: flex;
- align-items: center;
- background: #ffffff;
- box-shadow: 0px 2px 4px 0px rgba(0, 70, 139, 0.04);
- border-radius: 4px;
- transition: all 0.5s;
- padding: 20px;
- box-sizing: border-box;
- margin-top: 20px;
- position: relative;
- img {
- width: 58px;
- height: 58px;
- border-radius: 50%;
- }
- .num {
- margin: 0 20px;
- }
- .go {
- position: absolute;
- right: 20px;
- top: 50%;
- background: url('../../static/images/icon1.png');
- background-repeat: no-repeat;
- background-position: center center;
- background-size: 100% 100%;
- width: 36px;
- height: 36px;
- transform: translate(0, -50%);
- }
- cursor: pointer;
- &:hover {
- transform: scale(1.02);
- box-shadow: 0px 2px 8px 4px rgba(0, 70, 139, 0.04);
- color: #004ca1;
- .go {
- background: url('../../static/images/icon1-hover.png');
- background-repeat: no-repeat;
- background-position: center center;
- background-size: 100% 100%;
- width: 36px;
- height: 36px;
- position: absolute;
- top: 50%;
- right: 20px;
- transform: translate(0, -50%);
- }
- }
- }
- </style>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。