<!-- 상단/하단 이동 스크롤 버튼 -->
<style>
/* PC TOP 버튼 */
#scrollTopPc {
display: none;
position: fixed;
bottom: 80px; /* 브라우저 아래쪽 끝에서부터의 거리 */
right: 40px; /* 브라우저 오른쪽 끝에서부터의 거리 */
cursor: pointer;
z-index: 99;
}
/* 모바일 TOP 버튼 */
#scrollTopMob {
display: none;
position: fixed;
bottom: 64px; /* 브라우저 아래쪽 끝에서부터의 거리 */
right: 15px; /* 브라우저 오른쪽 끝에서부터의 거리 */
z-index: 99;
}
</style>
<!-- PC TOP 버튼 HTML -->
<div onclick="topFunction()" id="scrollTopPc" class="hidden-md hidden-sm hidden-xs">
<img class="toptop" src="https://cdn.imweb.me/upload/S202310191624e42e884b9/5ddd8fe9a0ad4.png" width="40" height="40">
</div>
<!-- 모바일 TOP 버튼 HTML -->
<div onclick="topFunctionMob()" id="scrollTopMob" class="hidden-lg">
<img class="toptop" src="https://cdn.imweb.me/upload/S202310191624e42e884b9/5ddd8fe9a0ad4.png" width="40" height="40">
</div>