Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                a(href="#top").btn-backtotop
	span.arrow.arrow_up


p スクロールするとボタンが表示されます
p スクロールするとボタンが表示されます
p スクロールするとボタンが表示されます
p スクロールするとボタンが表示されます
p スクロールするとボタンが表示されます
p スクロールするとボタンが表示されます
p スクロールするとボタンが表示されます
p スクロールするとボタンが表示されます
p スクロールするとボタンが表示されます

              
            
!

CSS

              
                /* ========================================================
矢印アイコン
=========================================================*/
.arrow {
	position: relative;
	display: inline-block;
	padding: 0 0 0 16px;
	color: #000;
	vertical-align: middle;
	text-decoration: none;
	&::after,
	&::before {
		position: absolute;
		content: "";
		top: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		vertical-align: middle;
	}
}
// 上矢印
.arrow_down::before,
.arrow_up::before {
	top: auto;
	left: auto;
	bottom: 8px;
	width: 10px;
	height: 10px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(-45deg);
}


/* ========================================================
ページトップに戻るボタン
=========================================================*/
.btn-backtotop{
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 1000;
	transition: all 1s ease-out;
	transition: bottom 0.2s ease-out;
	opacity: 0;
	@media screen and (max-width:767px){
		bottom: 10px;
		right: 5px;
	}
	// スクロール時にJSから付与されるクラス
	&.-fadein{
		opacity: 1;
	}
	// ホバー時の挙動
	&:hover{
		opacity: .8;
		bottom: 34px;
		@media screen and (max-width:767px){
			bottom: 10px;
		}
		&::after{
			box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
			@media screen and (max-width:767px){
				box-shadow: none;
			}
		}
	}
	// ボタンのベース
	&::after{
		content: "";
		display: block;
		color: #fff;
		text-align: center;
		width: 80px;
		height: 80px;
		padding: 4px;
		border-radius: 8px;
		background-color: #000;
		transition: all .3s;
		transform: scale(0.8) rotate(45deg);
		transition: background-color 0.5s ease-out;
		@media screen and (max-width:767px){
			width: 40px;
			height: 40px;
		}
	}
	// 矢印マーク
	.arrow{
		top: 72px;
		left: 13px;
		@media screen and (max-width:767px){
			top: 46px;
			left: -1px;
		}
		&::before{
			width: 20px;
			height: 20px;
			z-index: 1;
			@media screen and (max-width:767px){
				width: 10px;
				height: 10px;
			}
		}
	}
}




/* CodePen用に設定しているんで、実際は不要 */
body{
	height: 3000px;
}
p{
	margin: 100px 0;
}
/* /CodePen用に設定しているんで、実際は不要 */

              
            
!

JS

              
                // anime.js利用

/* ========================================================
スクロールでトップに戻るボタンを表示
=========================================================*/
// スクロールして何ピクセルでアニメーションさせるか
const px_change = 1;
// スクロールのイベントハンドラを登録
window.addEventListener('scroll', function(e) {
	// 変化するポイントまでスクロールしたらクラスを追加
	const scrollTop = window.pageYOffset || document.documentElement.scrollTop;
	if ( scrollTop > px_change ) {
		document.querySelector( ".btn-backtotop" ).classList.add( "-fadein" );

	// 変化するポイント以前であればクラスを削除
	} else {
		document.querySelector( ".btn-backtotop" ).classList.remove( "-fadein" );
	}
});

/* ========================================================
トップに戻るボタンのスムーズスクロール
=========================================================*/

document.querySelector( ".btn-backtotop" ).addEventListener('click', function(e) {
	anime.remove("html, body");
	anime({
		targets: "html, body",
		scrollTop: 0,
		dulation: 600,
		easing: 'easeOutCubic',
	});
	return false;
});

              
            
!
999px

Console