Authored by ccbikai

首页直播楼层

... ... @@ -55,4 +55,12 @@
{{#if newUserFloor}}
{{> resources/fresh-only}}
{{/if}}
{{! 标题楼层}}
{{#if titleFloor}}
{{> resources/title-floor}}
{{/if}}
{{! 标题楼层}}
{{#if threePicture}}
{{> resources/three-picture}}
{{/if}}
{{/content}}
... ...
<div class="three-picture clearfix">
{{#data}}
<a href="{{url}}">
<img src="{{image src 210 280}}">
</a>
{{/data}}
</div>
... ...
{{#data}}
{{> common/floor-header-more}}
{{/data}}
... ...
... ... @@ -39,7 +39,7 @@
"express-handlebars": "^3.0.0",
"express-session": "^1.14.0",
"influxdb-winston": "^1.0.1",
"lodash": "^4.13.1",
"lodash": "^4.15.0",
"md5": "^2.1.0",
"memcached": "^2.2.1",
"moment": "^2.14.1",
... ... @@ -55,7 +55,7 @@
"serve-favicon": "^2.3.0",
"uuid": "^2.0.2",
"winston": "^2.2.0",
"winston-daily-rotate-file": "^1.1.4",
"winston-daily-rotate-file": "^1.2.0",
"yoho-node-lib": "0.0.40"
},
"devDependencies": {
... ... @@ -88,8 +88,8 @@
"precss": "^1.4.0",
"rewire": "^2.5.2",
"shelljs": "^0.7.0",
"stylelint": "^6.9.0",
"stylelint-config-yoho": "^1.2.3",
"stylelint": "^7.1.0",
"stylelint-config-yoho": "^1.2.6",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-stream": "^3.1.0",
... ...

23.4 KB | W: 0px | H: 0px

2.5 KB | W: 0px | H: 0px

  • 2-up
  • Swipe
  • Onion skin
... ... @@ -23,6 +23,7 @@
@import "coupon";
@import "discount-list";
@import "left-right";
@import "three-picture";
.mobile-container {
margin-left: auto;
... ...
.three-picture {
padding: 0 0 24px 24px;
border-bottom: 1px solid #e0e0e0;
background: #fff;
a {
float: left;
width: 182px;
height: 238px;
margin-right: 24px;
&:nth-child(3n) {
margin-right: 0;
}
}
img {
width: 100%;
height: 100%;
}
}
... ...