edit え、return: falseが原因なだけ??????w

This commit is contained in:
harukin 2019-01-22 17:25:50 +09:00
parent 52042e51aa
commit 5789dd67f3
2 changed files with 20 additions and 16 deletions

View File

@ -2110,11 +2110,20 @@ a[title*="pawoo.net"]::after {
top: 30px; top: 30px;
} }
.generic-content-wrapper .section-content-wrapper .contact-entry-wrapper .contact-entry-photo-wrapper a::before{ .generic-content-wrapper
.section-content-wrapper
.contact-entry-wrapper
.contact-entry-photo-wrapper
a::before {
position: absolute; position: absolute;
} }
#notifications a::after, .generic-content-wrapper .section-content-wrapper .contact-entry-wrapper .contact-entry-photo-wrapper a::after{ #notifications a::after,
.generic-content-wrapper
.section-content-wrapper
.contact-entry-wrapper
.contact-entry-photo-wrapper
a::after {
display: none; display: none;
} }
@ -2156,10 +2165,6 @@ a[title*="pawoo.net"]::after {
max-width: $converse_widthpx; max-width: $converse_widthpx;
} }
nav {
pointer-events: none;
}
nav .navbar-text > div { nav .navbar-text > div {
font-size: 0px; font-size: 0px;
} }

View File

@ -101,14 +101,13 @@ $(document).ready(function() {
checkNotify(); checkNotify();
}, 10 * 1000); }, 10 * 1000);
//トップに戻る //トップに戻る
$("nav:not(.href)").click(function(e) { $("nav").click(function(e) {
$("body,html").animate( $("body,html").animate(
{ {
scrollTop: 0 scrollTop: 0
}, },
150 150
); );
return false;
}); });
}); });