Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
W
www.fudou6.com
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liaili
www.fudou6.com
Commits
154aa487
Commit
154aa487
authored
Aug 02, 2016
by
superman
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'express' of gitlab.yanky.cn:liaili/www.fudou6.com into express
# Conflicts: # npm-debug.log
parents
41190f81
9e8c0751
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
150 additions
and
8 deletions
+150
-8
6.pic_hd.jpg
public/images/index/6.pic_hd.jpg
+0
-0
product.js
public/javascripts/product.js
+12
-0
index.less
public/stylesheets/index.less
+2
-0
product.css
public/stylesheets/product.css
+50
-1
product.less
public/stylesheets/product.less
+53
-1
products.less
public/stylesheets/products.less
+2
-1
style.css
public/stylesheets/style.css
+2
-1
style.less
public/stylesheets/style.less
+3
-1
index.hbs
views/index.hbs
+2
-1
layout.hbs
views/layout.hbs
+8
-0
product.hbs
views/product.hbs
+16
-2
No files found.
public/images/index/6.pic_hd.jpg
0 → 100644
View file @
154aa487
28.3 KB
public/javascripts/product.js
View file @
154aa487
...
...
@@ -13,6 +13,7 @@
var
balance
=
$
(
'.balance'
).
html
();
var
total
=
$
(
'.total'
).
html
();
var
progress
=
$
(
'.progress-bar i'
);
var
$modalBoxErweima
=
$
(
'.modal-box-erweima'
);
progress
.
width
(
progress
.
data
(
'width'
));
/**
* 验证用户姓名
...
...
@@ -79,5 +80,16 @@
$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
);
})
})();
public/stylesheets/index.less
View file @
154aa487
...
...
@@ -404,6 +404,8 @@
/*product end*/
.screen() {
.media(@screen-width-small, @container-width-small);
.media(@screen-width, @container-width);
...
...
public/stylesheets/product.css
View file @
154aa487
...
...
@@ -220,7 +220,7 @@ body {
background
:
#ff4a4b
;
position
:
relative
;
}
.modal-box
.modal-dialog
div
:nth-child
(
1
)
b
{
.modal-box
.modal-dialog
div
:nth-child
(
1
)
a
{
display
:
inline-block
;
width
:
46px
;
height
:
46px
;
...
...
@@ -260,6 +260,55 @@ body {
text-align
:
center
;
}
/* .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
)
{
body
.intro
,
body
.appointment
,
...
...
public/stylesheets/product.less
View file @
154aa487
...
...
@@ -233,7 +233,7 @@ body {
height: 80px;
background: #ff4a4b;
position: relative;
b
{
a
{
display: inline-block;
width: 46px;
height: 46px;
...
...
@@ -281,6 +281,58 @@ body {
/* .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() {
.media(@screen-width-small, @container-width-small);
.media(@screen-width, @container-width);
...
...
public/stylesheets/products.less
View file @
154aa487
...
...
@@ -262,3 +262,4 @@
body {
.screen();
}
public/stylesheets/style.css
View file @
154aa487
...
...
@@ -518,10 +518,11 @@ hr.line-separate:after {
}
#footer
address
{
font-style
:
normal
;
color
:
#aeaeae
;
}
#footer
address
,
#footer
address
a
{
color
:
#00a4d8
;
cursor
:
pointer
;
}
#footer
.copyright
{
margin-top
:
80px
;
...
...
public/stylesheets/style.less
View file @
154aa487
...
...
@@ -118,8 +118,10 @@ hr.line-separate {
}
address {
font-style: normal;
&, a {
color: #aeaeae;
a {
color: #00a4d8;
cursor: pointer;
}
}
.copyright {
...
...
views/index.hbs
View file @
154aa487
<div
class=
"banner"
>
https://res.fudou6.com/c/4/20160802/acpNi5waWNfaGQ=_280x280.jpg
<div
class=
"banner"
>
<div
class=
"banner-box"
>
<h1>
海量资源 轻松抢单
</h1>
<p>
...
...
@@ -106,3 +106,4 @@
{{/
each
}}
</ul>
</div>
views/layout.hbs
View file @
154aa487
...
...
@@ -44,8 +44,16 @@
<h2>
400-879-9900
</h2>
<!--<hr class="line-separate"/>-->
<p
class=
"copyright"
>
Copyright2016
<span>
shuniu
</span>
All Right Reserved
©
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>
上海市浦东新区福山路458号同盛大厦1808室
</address>
>>>>>>> 546ba5723d0162ab25246abb551367aad882f2e0
</footer>
<script
src=
"/javascripts/jquery-1.8.3.min.js"
></script>
{{#if
env
}}
...
...
views/product.hbs
View file @
154aa487
...
...
@@ -28,7 +28,8 @@
</td>
{{#
unless
@index
}}
<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>
{{/
unless
}}
</tr>
...
...
@@ -153,7 +154,7 @@
<div
class=
"modal-box"
>
<div
class=
"modal-dialog"
>
<div>
<
b
id=
"modalBoxHidden"
>
×
</b
>
<
a
id=
"modalBoxHidden"
>
×
</a
>
</div>
<div>
<i></i>
...
...
@@ -162,3 +163,16 @@
<p>
富豆工作人员将第一时间与您取得联系!
</p>
</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>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment