๊ด€๋ฆฌ ๋ฉ”๋‰ด

bom's happy life

ํƒ‘ ์ด๋™ ๋ฒ„ํŠผ ๋งŒ๋“ค๊ธฐ ๋ณธ๋ฌธ

Deveolpment Study๐Ÿ—‚๏ธ/Javascript

ํƒ‘ ์ด๋™ ๋ฒ„ํŠผ ๋งŒ๋“ค๊ธฐ

bompeach 2023. 3. 15. 19:42

์›น ํŽ˜์ด์ง€ ํƒ‘์œผ๋กœ ์ด๋™ํ•˜๋Š” ๋ฒ„ํŠผ ๋งŒ๋“ค๊ธฐ.

<!-- ํƒ‘ ์ด๋™ ๋ฒ„ํŠผ -->
<a href="#" class="btn_gotop">
  <span class="glyphicon glyphicon-chevron-up">
  </span>
</a>

<!-- ๋ฒ„ํŠผ css -->
<style>
.btn_gotop {
	display:none;
	position:fixed;
	bottom:30px;
	right:30px;
	z-index:999;
	border:1px solid #ccc;
	outline:none;
	background-color:white;
	color:#333;
	cursor:pointer;
	padding:15px 20px;
	border-radius:100%;
}
</style>

<!-- ๋ฒ„ํŠผ js-->
<script>
$(window).scroll(function(){
	if ($(this).scrollTop() > 300){
		$('.btn_gotop').show();
	} else{
		$('.btn_gotop').hide();
	}
});
$('.btn_gotop').click(function(){
	$('html, body').animate({scrollTop:0},400);
	return false;
});
</script>

 

 

.

.

 

<-- ๋‹ค๋ฅธ ๋ธ”๋กœ๊ทธ๋„ ์ฐธ์กฐ -->

 

https://gurtn.tistory.com/137

 

[JS] ํŽ˜์ด์ง€ ์ƒ๋‹จ(ํ•˜๋‹จ)์œผ๋กœ ์ด๋™ํ•˜๋Š” ๋ฒ„ํŠผ ๊ตฌํ˜„ํ•˜๊ธฐ

๋ฒ„ํŠผ ํด๋ฆญ ํ•˜๋‚˜๋งŒ์œผ๋กœ ์›น ํŽ˜์ด์ง€์˜ ์ƒ๋‹จ์œผ๋กœ ์ด๋™ํ•˜๋Š” ๊ธฐ๋Šฅ์„ ๊ตฌํ˜„ํ•ด๋ณด๊ฒ ์Šต๋‹ˆ๋‹ค. ์ฝ”๋“œ ๋งจ ์œ„๋กœ .moveTopBtn { position: fixed; bottom: 1rem; right: 1rem; width: 4rem; height: 4rem; background: #000; color: #fff; } ๊ฐ„๋‹จํ•œ H

gurtn.tistory.com