TOP
First
About
TCgΜΰΎ
Rule
TCgΜKρ
«
Contents
Contents-01
Contents-02
«
Author
Profile
©ΘΠξ
SNS
Mail
«
Code
head
CSS
/*
Template T-11 Under Threads
By Jumble Fun
Site URL https://alicex.jp/kenz/
*/
* {
font-size:13px;
font-family:"Arvo",Sans-Serif;
box-sizing:border-box;
margin:0;
padding:0;
}
body {
scroll-behavior:smooth;
}
a {
color:black;
text-decoration:none;
}
ul {
list-style-type:none;
}
header {
background-image:
url('../header-back.image.jpeg');
background-repeat:no-repeat;
background-position:50% 50%;
background-size:cover;
height:200px;
padding:20px;
}
header h1 {
font-size:30px;
font-weight:600;
color:white;
text-align:right;
margin-bottom:90px;
}
header ul {
display:flex;
justify-content:center;
}
header ul li {
background-color:black;
margin:5px;
padding:10px 15px;
}
header ul li a {
color:white;
}
header ul li:hover {
background-color:gray;
transition:0.2s;
}
a.top,
a.down {
border:solid 1px black;
color:white;
background-color:black;
position:fixed;
bottom:20px;
right:20px;
width:40px;
height:40px;
line-height:40px;
text-align:center;
z-index:10;
}
a.down {
position:absolute;
bottom:70px;
}
section {
position:relative;
height:550px;
padding:20px;
}
section.main {
height:350px;
}
section:nth-of-type(even) {
background-color:silver;
}
section h2 {
font-size:30px;
font-weight:600;
margin-bottom:20px;
padding:10px 20px;
}
section h3 {
color:white;
background-color:black;
padding:10px 20px;
display:inline-block;
}
div.container {
line-height:180%;
margin-bottom:20px;
padding:0 10px;
white-space:pre-line;
}
div.container a:hover {
color:orange;
transition:0.2s;
}
footer {
text-align:center;
padding:20px;
}
JS
$(window).on('load', function(){
$('a[href^="#"]').click(function () {
var speed = 50;
var href = $(this).attr("href");
var target = $(href == "#" || href == "" ? 'html' : href);
var position = target.offset().top;
$("html, body").animate({
scrollTop: position
}, speed, "swing");
return false;
});
var topBtn = $('.top');
topBtn.hide();
$(window).scroll(function () {
if ($(this).scrollTop() > 100) {
topBtn.fadeIn();
} else {
topBtn.fadeOut();
}
});
});
body
TOP
First
About
TCgΜΰΎ
Rule
TCgΜKρ
«
Contents
Contents-01
Contents-02
«
Author
Profile
©ΘΠξ
SNS
Mail