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
biao
9 years ago
Commit
4c5265912cf8c98ed99ad5101ac675482d3f7607
2 parents
8ac3b3f7
6da6e693
Merge branch 'develop' of
http://git.dev.yoho.cn/web/yohobuy
into develop
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
3 deletions
static/js/me/fav.js
static/js/me/index.js
static/sass/me/_home.scss
static/js/me/fav.js
View file @
4c52659
...
...
@@ -233,4 +233,10 @@ function scrollHandler() {
}
//srcoll to load more
$
(
window
).
scroll
(
scrollHandler
);
\ No newline at end of file
$
(
window
).
scroll
(
scrollHandler
);
$
(
document
).
on
(
'touchend'
,
'.swiper-header'
,
function
()
{
var
url
=
$
(
this
).
find
(
'.fav-more'
).
attr
(
'href'
);
window
.
location
.
href
=
url
;
});
...
...
static/js/me/index.js
View file @
4c52659
...
...
@@ -19,9 +19,9 @@ myImage.onload = function() {
$userAvatar
.
css
(
'background-image'
,
'url('
+
avatar
+
')'
);
};
$
(
'.yoho-page'
).
on
(
'touchstart'
,
'.list-item, .type-item'
,
function
()
{
$
(
'.yoho-page'
).
on
(
'touchstart'
,
'.list-item, .type-item
, .order-title
'
,
function
()
{
$listItem
.
removeClass
(
'highlight'
);
$
(
this
).
addClass
(
'highlight'
);
}).
on
(
'touchend touchcancel'
,
'.list-item, .type-item'
,
function
()
{
}).
on
(
'touchend touchcancel'
,
'.list-item, .type-item
, .order-title
'
,
function
()
{
$
(
this
).
removeClass
(
'highlight'
);
});
...
...
static/sass/me/_home.scss
View file @
4c52659
...
...
@@ -136,6 +136,10 @@
color
:
#e0e0e0
;
float
:
right
;
}
&
.highlight
{
background
:
#eee
;
}
}
.order-type
{
...
...
Please
register
or
login
to post a comment