Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYPC
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
2
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
biao
9 years ago
Commit
6706b23c3b751c0c0dd39dffc75f0083fbb96932
1 parent
5e92d330
fix layer display issue
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
1 deletions
static/js/index/channel.js
static/js/index/channel.js
View file @
6706b23
...
...
@@ -9,7 +9,10 @@ var $searchBox = $('.search-box'),
$box
=
$
(
'.box'
),
$indexSearch
=
$
(
'.index-search'
),
$indexLogo
=
$
(
'.index-logo'
),
$channelLink
=
$
(
'.index-channel a'
);
$channelLink
=
$
(
'.index-channel a'
),
$win
=
$
(
window
),
$doc
=
$
(
document
),
$appFloatLayer
=
$
(
'#float-layer-app'
);
var
$search
=
$searchBox
.
children
(
'input[type="text"]'
),
$cancelSearch
=
$box
.
children
(
'.no-search'
),
...
...
@@ -65,3 +68,43 @@ $channelLink.on('touchstart', function() {
borderColor
:
'#fff'
});
});
var
removeAppFloatLayerFixed
=
(
function
()
{
var
init
=
false
;
return
function
()
{
var
winHeight
=
window
.
innerHeight
;
var
bodyHeight
=
$doc
.
height
();
var
scrollTopPosition
=
$win
.
scrollTop
();
var
layerHeight
=
$appFloatLayer
.
height
();
var
layerPaddingTop
=
parseInt
(
$appFloatLayer
.
css
(
'padding-top'
));
var
layerPaddingBottom
=
parseInt
(
$appFloatLayer
.
css
(
'padding-bottom'
));
var
newPosition
;
if
(
init
){
newPosition
=
bodyHeight
-
winHeight
-
scrollTopPosition
;
}
else
{
init
=
true
;
newPosition
=
bodyHeight
-
winHeight
-
scrollTopPosition
+
layerHeight
+
layerPaddingTop
+
layerPaddingBottom
;
}
$appFloatLayer
.
css
({
'position'
:
'relative'
,
'bottom'
:
newPosition
+
'px'
});
};
})();
$win
.
scroll
(
function
()
{
clearTimeout
(
$
.
data
(
this
,
'scrollTimer'
));
$
.
data
(
this
,
'scrollTimer'
,
setTimeout
(
function
()
{
removeAppFloatLayerFixed
();
},
2
));
});
$win
.
on
(
'resize'
,
function
(){
console
.
log
(
'resize'
);
});
$win
.
on
(
'scrollstop'
,
function
(){
console
.
log
(
'stop'
);
});
$doc
.
on
(
'ready'
,
removeAppFloatLayerFixed
);
...
...
Please
register
or
login
to post a comment