Authored by 李靖

修改背景

<div class="bg-pic">
<div class="pic" style="background-image:url(http://img13.static.yhbimg.com/article/2017/08/01/10/023529d91b6af3acac1407d42ac23134fb.png)">
<div class="pic {{#if coffee}}coffee{{/if}} {{#if photography}}photography{{/if}} {{#if green}}green{{/if}}">
<div class="cover"></div>
</div>
<div class="base-info">
... ...
require('activity/store-home.page.css');
const Photography = require('./store-home/index');
new Photography();
... ...
require('activity/store-home.page.css');
const Photography = require('./store-home/index');
new Photography();
... ...
... ... @@ -141,6 +141,18 @@ input::-webkit-calendar-picker-indicator {
background-color: #000;
opacity: 0.6;
}
&.photography {
background-image: resolve("activity/store-home/photography-bg.jpg");
}
&.green {
background-image: resolve("activity/store-home/green-bg.jpg");
}
&.coffee {
background-image: resolve("activity/store-home/coffee-bg.jpg");
}
}
.base-info {
... ...
... ... @@ -6,6 +6,14 @@
background-color: #fff;
border-bottom: 1px solid #e0e0e0;
input::-webkit-clear-button {
display: none;
}
input::-webkit-calendar-picker-indicator {
display: none;
}
ul {
width: 95%;
height: auto;
... ...