Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
Lynnic
9 years ago
Commit
bb585e65ead9d6e4012df761eb9d838a2dce6968
2 parents
5c7c8047
075d4878
code reviewed by liangzhifeng
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
34 deletions
static/js/product/detail/comments-consults.js
static/js/product/detail/detail.js
static/sass/product/_comments-consults.scss
static/sass/product/_detail.scss
static/js/product/detail/comments-consults.js
View file @
bb585e6
...
...
@@ -16,10 +16,7 @@ var consultFooterEle = document.getElementById('consult-content-footer'),
navtabHammer
=
navtabEle
&&
new
Hammer
(
navtabEle
),
gotoConsultEle
=
document
.
getElementById
(
'goto-consult'
),
gotoConsultHammer
=
gotoConsultEle
&&
new
Hammer
(
gotoConsultEle
),
$gotoConsult
=
$
(
'#goto-consult'
);
gotoConsultHammer
=
gotoConsultEle
&&
new
Hammer
(
gotoConsultEle
);
(
function
()
{
...
...
@@ -81,20 +78,8 @@ if (gotoConsultHammer) {
});
}
function
fixConsultBar
()
{
if
(
$
(
window
).
scrollTop
()
>
$
(
'#yoho-header'
).
outerHeight
())
{
$gotoConsult
.
css
(
'position'
,
'fixed'
);
$gotoConsult
.
css
(
'top'
,
'0'
);
}
else
{
$gotoConsult
.
css
(
'position'
,
'static'
);
}
}
//滚动时顶部固定 我要咨询
function
scrollHandler
()
{
fixConsultBar
();
//咨询页面固定header
if
(
$
(
'.goods-consults-page'
).
length
>
0
)
{
$
(
'#yoho-header'
).
css
(
'position'
,
'fixed'
).
css
(
'top'
,
'0'
);
}
$
(
window
).
scroll
(
function
()
{
window
.
requestAnimationFrame
(
scrollHandler
);
});
...
...
static/js/product/detail/detail.js
View file @
bb585e6
...
...
@@ -15,10 +15,7 @@ var goodsSwiper,
var
goodsDiscountEl
=
document
.
getElementById
(
'goodsDiscount'
),
goodsDiscountHammer
=
goodsDiscountEl
&&
new
Hammer
(
goodsDiscountEl
);
var
$cart
=
$
(
'.cart-bar'
),
$goodsSubtitle
=
$
(
'.goodsSubtitle'
),
divH
,
$goodsSubtitleSpan
;
var
$cart
=
$
(
'.cart-bar'
);
require
(
'./desc'
);
require
(
'./comments-consults'
);
...
...
@@ -85,12 +82,4 @@ $.ajax({
}
});
//限制goodsSubtitle为两行
if
(
$goodsSubtitle
[
0
])
{
divH
=
$goodsSubtitle
.
height
();
$goodsSubtitleSpan
=
$goodsSubtitle
.
find
(
'span'
);
while
(
$goodsSubtitleSpan
.
outerHeight
()
>
divH
)
{
$goodsSubtitleSpan
.
text
(
$goodsSubtitleSpan
.
text
().
replace
(
/
(\s)
*
([
a-zA-Z0-9
]
+|
\W)(\.\.\.)?
$/
,
'...'
));
}
}
require
(
'./like'
);
...
...
static/sass/product/_comments-consults.scss
View file @
bb585e6
...
...
@@ -41,6 +41,8 @@
.goods-consults-page
{
background-color
:
#f0f0f0
;
.goto-consult
{
position
:
fixed
;
top
:
2
.25rem
;
width
:
100%
;
box-sizing
:border-box
;
padding
:
0
pxToRem
(
28px
);
...
...
@@ -63,6 +65,8 @@
}
}
.goods-consults
{
margin-top
:
5
.25rem
;
overflow
:
hidden
;
.consult-item
{
margin-top
:
pxToRem
(
30px
);
padding
:
pxToRem
(
20px
)
pxToRem
(
28px
);
...
...
static/sass/product/_detail.scss
View file @
bb585e6
...
...
@@ -211,18 +211,26 @@ $basicBtnC:#eb0313;
background-color
:
#515150
;
}
.goodsSubtitle
{
// display: table;
height
:
pxToRem
(
88px
);
font-size
:
pxToRem
(
24px
);
color
:
$subFontC
;
padding-left
:
pxToRem
(
28px
);
padding-right
:
pxToRem
(
28px
);
padding-top
:
pxToRem
(
14px
);
border-bottom
:
1px
solid
$borderC
;
background-color
:
#f4f4f4
;
background-color
:
$pageBgC
;
display
:
flex
;
align-items
:
center
;
span
{
display
:
block
;
// display: table-cell;
display
:
-
webkit-box
;
line-height
:
pxToRem
(
36px
);
margin
:
0
;
text-overflow
:
-
o-ellipsis-lastline
;
overflow
:
hidden
;
text-overflow
:
ellipsis
;
-webkit-line-clamp
:
2
;
-webkit-box-orient
:
vertical
;
}
}
.price-date
{
...
...
Please
register
or
login
to post a comment