fix js position

This commit is contained in:
harukin 2019-01-22 16:51:22 +09:00
parent 332b7409ba
commit f0600d49a6

View File

@ -100,6 +100,16 @@ $(document).ready(function() {
setInterval(function() {
checkNotify();
}, 10 * 1000);
//トップに戻る
$("nav").click(function(e) {
$("body,html").animate(
{
scrollTop: 0
},
150
);
return false;
});
});
function makeFullScreen(full) {
@ -158,14 +168,3 @@ function toggleBside() {
});
}
}
//トップに戻る
$("nav").click(function(e) {
$("body,html").animate(
{
scrollTop: 0
},
150
);
return false;
});