fix js position
This commit is contained in:
parent
332b7409ba
commit
f0600d49a6
@ -100,6 +100,16 @@ $(document).ready(function() {
|
|||||||
setInterval(function() {
|
setInterval(function() {
|
||||||
checkNotify();
|
checkNotify();
|
||||||
}, 10 * 1000);
|
}, 10 * 1000);
|
||||||
|
//トップに戻る
|
||||||
|
$("nav").click(function(e) {
|
||||||
|
$("body,html").animate(
|
||||||
|
{
|
||||||
|
scrollTop: 0
|
||||||
|
},
|
||||||
|
150
|
||||||
|
);
|
||||||
|
return false;
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
function makeFullScreen(full) {
|
function makeFullScreen(full) {
|
||||||
@ -158,14 +168,3 @@ function toggleBside() {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//トップに戻る
|
|
||||||
$("nav").click(function(e) {
|
|
||||||
$("body,html").animate(
|
|
||||||
{
|
|
||||||
scrollTop: 0
|
|
||||||
},
|
|
||||||
150
|
|
||||||
);
|
|
||||||
return false;
|
|
||||||
});
|
|
||||||
|
Reference in New Issue
Block a user