...
|
...
|
@@ -193,13 +193,11 @@ $(window).on('scroll', function() { |
|
|
|
|
|
if (scrollTop > fixedAreaTop) {
|
|
|
$fixedArea.css({
|
|
|
position: 'fixed',
|
|
|
top: 0
|
|
|
position: 'fixed'
|
|
|
});
|
|
|
} else {
|
|
|
$fixedArea.css({
|
|
|
position: 'static',
|
|
|
top: 0
|
|
|
position: 'absolute'
|
|
|
});
|
|
|
}
|
|
|
}); |
...
|
...
|
|