Commit 154aa487 authored by superman's avatar superman

Merge branch 'express' of gitlab.yanky.cn:liaili/www.fudou6.com into express

# Conflicts:
#	npm-debug.log
parents 41190f81 9e8c0751
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
var balance = $('.balance').html(); var balance = $('.balance').html();
var total = $('.total').html(); var total = $('.total').html();
var progress = $('.progress-bar i'); var progress = $('.progress-bar i');
var $modalBoxErweima = $('.modal-box-erweima');
progress.width(progress.data('width')); progress.width(progress.data('width'));
/** /**
* 验证用户姓名 * 验证用户姓名
...@@ -79,5 +80,16 @@ ...@@ -79,5 +80,16 @@
$modalBox.fadeOut(300); $modalBox.fadeOut(300);
}); });
/**
* 点击二维码弹窗
*/
$('.login-app').on('click',function(e){
e.preventDefault();
$modalBoxErweima.fadeIn(300);
})
$('.modal-dialog-close').on('click',function(e){
e.preventDefault();
$modalBoxErweima.fadeOut(300);
})
})(); })();
...@@ -404,6 +404,8 @@ ...@@ -404,6 +404,8 @@
/*product end*/ /*product end*/
.screen() { .screen() {
.media(@screen-width-small, @container-width-small); .media(@screen-width-small, @container-width-small);
.media(@screen-width, @container-width); .media(@screen-width, @container-width);
......
...@@ -220,7 +220,7 @@ body { ...@@ -220,7 +220,7 @@ body {
background: #ff4a4b; background: #ff4a4b;
position: relative; position: relative;
} }
.modal-box .modal-dialog div:nth-child(1) b { .modal-box .modal-dialog div:nth-child(1) a {
display: inline-block; display: inline-block;
width: 46px; width: 46px;
height: 46px; height: 46px;
...@@ -260,6 +260,55 @@ body { ...@@ -260,6 +260,55 @@ body {
text-align: center; text-align: center;
} }
/* .modal-box end */ /* .modal-box end */
/* .modal-box-erweima start */
.modal-box-erweima {
display: none;
position: fixed;
left: 0;
top: 0;
bottom: 0;
right: 0;
background: rgba(0, 0, 0, 0.5);
}
.modal-box-erweima .modal-dialog {
width: 450px;
height: 450px;
position: fixed;
left: 50%;
top: 300px;
margin-left: -225px;
border-radius: 10px;
background: #fff;
overflow: hidden;
}
.modal-box-erweima .modal-dialog > div {
text-align: center;
}
.modal-box-erweima .modal-dialog > div:nth-child(1) {
height: 50px;
background: #ff4a4b;
position: relative;
}
.modal-box-erweima .modal-dialog > div:nth-child(2) {
padding-top: 40px;
}
.modal-box-erweima .modal-dialog > div:nth-child(2) p {
font-size: 26px;
}
.modal-box-erweima .modal-dialog .modal-dialog-close {
width: 30px;
height: 30px;
font-size: 20px;
text-align: center;
line-height: 30px;
position: absolute;
right: 16px;
top: 10px;
border-radius: 50%;
border: 2px solid #fff;
color: #fff;
}
/* .modal-box-erweima end */
@media screen and (min-width: 769px) { @media screen and (min-width: 769px) {
body .intro, body .intro,
body .appointment, body .appointment,
......
...@@ -233,7 +233,7 @@ body { ...@@ -233,7 +233,7 @@ body {
height: 80px; height: 80px;
background: #ff4a4b; background: #ff4a4b;
position: relative; position: relative;
b { a {
display: inline-block; display: inline-block;
width: 46px; width: 46px;
height: 46px; height: 46px;
...@@ -281,6 +281,58 @@ body { ...@@ -281,6 +281,58 @@ body {
/* .modal-box end */ /* .modal-box end */
/* .modal-box-erweima start */
.modal-box-erweima {
display: none;
position: fixed;
left:0;
top:0;
bottom: 0;
right: 0;
background: rgba(0,0,0,.5);
.modal-dialog {
width: 450px;
height: 450px;
position: fixed;
left:50%;
top:300px;
margin-left: -225px;
border-radius: 10px;
background: #fff;
overflow: hidden;
& > div {
text-align: center;
&:nth-child(1){
height: 50px;
background: #ff4a4b;
position: relative;
}
&:nth-child(2) {
padding-top: 40px;
p {
font-size: 26px;
}
}
}
.modal-dialog-close {
width: 30px;
height: 30px;
font-size: 20px;
text-align: center;
line-height: 30px;
position: absolute;
right:16px;
top:10px;
border-radius: 50%;
border: 2px solid #fff;
color: #fff;
}
}
}
/* .modal-box-erweima end */
.screen() { .screen() {
.media(@screen-width-small, @container-width-small); .media(@screen-width-small, @container-width-small);
.media(@screen-width, @container-width); .media(@screen-width, @container-width);
......
...@@ -261,4 +261,5 @@ ...@@ -261,4 +261,5 @@
body { body {
.screen(); .screen();
} }
\ No newline at end of file
...@@ -518,10 +518,11 @@ hr.line-separate:after { ...@@ -518,10 +518,11 @@ hr.line-separate:after {
} }
#footer address { #footer address {
font-style: normal; font-style: normal;
color: #aeaeae;
} }
#footer address,
#footer address a { #footer address a {
color: #00a4d8; color: #00a4d8;
cursor: pointer;
} }
#footer .copyright { #footer .copyright {
margin-top: 80px; margin-top: 80px;
......
...@@ -118,8 +118,10 @@ hr.line-separate { ...@@ -118,8 +118,10 @@ hr.line-separate {
} }
address { address {
font-style: normal; font-style: normal;
&, a { color: #aeaeae;
a {
color: #00a4d8; color: #00a4d8;
cursor: pointer;
} }
} }
.copyright { .copyright {
......
<div class="banner"> https://res.fudou6.com/c/4/20160802/acpNi5waWNfaGQ=_280x280.jpg<div class="banner">
<div class="banner-box"> <div class="banner-box">
<h1>海量资源 轻松抢单</h1> <h1>海量资源 轻松抢单</h1>
<p> <p>
...@@ -106,3 +106,4 @@ ...@@ -106,3 +106,4 @@
{{/each}} {{/each}}
</ul> </ul>
</div> </div>
...@@ -44,8 +44,16 @@ ...@@ -44,8 +44,16 @@
<h2>400-879-9900</h2> <h2>400-879-9900</h2>
<!--<hr class="line-separate"/>--> <!--<hr class="line-separate"/>-->
<p class="copyright">Copyright2016 <span>shuniu</span> All Right Reserved&copy;2014-2015 杭州枢纽科技有限公司 版权所有</p> <p class="copyright">Copyright2016 <span>shuniu</span> All Right Reserved&copy;2014-2015 杭州枢纽科技有限公司 版权所有</p>
<<<<<<< HEAD
<address>
浙江省杭州市余杭区良睦路1288号梦想小镇5-305
<br>上海市浦东新区福山路458号同盛大厦1808室 <br>
<a href="mailto:hr@shuniu.com">E-mail:hr@shuniu.com</a>
</address>
=======
<address>浙江省杭州市余杭区良睦路1288号梦想小镇5-305 E-mail: <a href="mailto:hr@shuniu.com">hr@shuniu.com</a></address> <address>浙江省杭州市余杭区良睦路1288号梦想小镇5-305 E-mail: <a href="mailto:hr@shuniu.com">hr@shuniu.com</a></address>
<address>上海市浦东新区福山路458号同盛大厦1808室</address> <address>上海市浦东新区福山路458号同盛大厦1808室</address>
>>>>>>> 546ba5723d0162ab25246abb551367aad882f2e0
</footer> </footer>
<script src="/javascripts/jquery-1.8.3.min.js"></script> <script src="/javascripts/jquery-1.8.3.min.js"></script>
{{#if env}} {{#if env}}
......
...@@ -28,7 +28,8 @@ ...@@ -28,7 +28,8 @@
</td> </td>
{{#unless @index}} {{#unless @index}}
<td rowspan={{rowspan}}> <td rowspan={{rowspan}}>
<a href="http://a.app.qq.com/o/simple.jsp?pkgname=com.fudou6.app" target="_blank">登录富豆APP可见</a> <!--<a href="http://a.app.qq.com/o/simple.jsp?pkgname=com.fudou6.app" target="_blank">登录富豆APP可见</a>-->
<a href="javascript:;" class="login-app">登录富豆APP可见</a>
</td> </td>
{{/unless}} {{/unless}}
</tr> </tr>
...@@ -153,7 +154,7 @@ ...@@ -153,7 +154,7 @@
<div class="modal-box"> <div class="modal-box">
<div class="modal-dialog"> <div class="modal-dialog">
<div> <div>
<b id="modalBoxHidden">&times;</b> <a id="modalBoxHidden">&times;</a>
</div> </div>
<div> <div>
<i></i> <i></i>
...@@ -161,4 +162,17 @@ ...@@ -161,4 +162,17 @@
</div> </div>
<p>富豆工作人员将第一时间与您取得联系!</p> <p>富豆工作人员将第一时间与您取得联系!</p>
</div> </div>
</div>
<div class="modal-box-erweima">
<div class="modal-dialog">
<div>
<a class="modal-dialog-close">&times</a>
</div>
<div>
<a href="javascript:;">
<img src="https://res.fudou6.com/c/4/20160802/acpNi5waWNfaGQ=_280x280.jpg" alt="erweima"/>
</a>
<p>扫描二维码,下载富豆优投</p>
</div>
</div>
</div> </div>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment