demo 原始链接:https://vux.li/demos/v2/#/component/masker
\n下面的$t是Demo的i18n使用的翻译函数,一般情况下可以直接使用字符串。另外,下面代码隐藏了i18n标签部分的代码。
\n<template>\n <div>\n <div style=\"margin: 10px;overflow: hidden;\" v-for=\"item in list\">\n <masker style=\"border-radius: 2px;\">\n <div class=\"m-img\" :style=\"{backgroundImage: 'url(' + item.img + ')'}\"></div>\n <div slot=\"content\" class=\"m-title\">\n {{item.title}}\n <br/>\n <span class=\"m-time\">2016-03-18</span>\n </div>\n </masker>\n </div>\n <div style=\"margin: 10px;overflow: hidden;\">\n <masker style=\"border-radius: 2px;\" color=\"F9C90C\" :opacity=\"0.8\">\n <div class=\"m-img\" style=\"background-image:url(https://cdn.xiaotaojiang.com/uploads/56/4b3601364b86fdfd234ef11d8712ad/_.jpg)\"></div>\n <div slot=\"content\" class=\"m-title\">\n VUX\n <br/>\n <span class=\"m-time\">2016-03-18</span>\n </div>\n </masker>\n </div>\n </div>\n</template>\n\n<script>\nimport { Masker } from 'vux'\n\nexport default {\n components: {\n Masker\n },\n data () {\n return {\n list: [{\n title: '洗颜新潮流!人气洁面皂排行榜',\n img: 'https://cdn.xiaotaojiang.com/uploads/82/1572ec37969ee263735262dc017975/_.jpg'\n }, {\n title: '美容用品 & 日用品(上)',\n img: 'https://cdn.xiaotaojiang.com/uploads/59/b22e0e62363a4a652f28630b3233b9/_.jpg'\n }, {\n title: '远离车内毒气,日本车载空气净化器精选',\n img: 'https://cdn.xiaotaojiang.com/uploads/56/4b3601364b86fdfd234ef11d8712ad/_.jpg'\n }]\n }\n }\n}\n</script>\n\n<style lang=\"less\">\n.m-img {\n padding-bottom: 33%;\n display: block;\n position: relative;\n max-width: 100%;\n background-size: cover;\n background-position: center center;\n cursor: pointer;\n border-radius: 2px;\n}\n\n.m-title {\n color: #fff;\n text-align: center;\n text-shadow: 0 0 2px rgba(0, 0, 0, .5);\n font-weight: 500;\n font-size: 16px;\n position: absolute;\n left: 0;\n right: 0;\n width: 100%;\n text-align: center;\n top: 50%;\n transform: translateY(-50%);\n}\n\n.m-time {\n font-size: 12px;\n padding-top: 4px;\n border-top: 1px solid #f0f0f0;\n display: inline-block;\n margin-top: 5px;\n}\n</style>\n\n
\n