-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquick.php
More file actions
35 lines (33 loc) · 768 Bytes
/
quick.php
File metadata and controls
35 lines (33 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<div class="quick_banner">
<div class="floating_menu">
<input type="checkbox">
<span class="floating_plus">
<i class="fa-solid fa-plus"></i>
</span>
<ul class="floating_nav">
<li>
<a href="<?php echo G5_BBS_URL ?>/board.php?bo_table=qna"><i class="fa-solid fa-headset"></i></a>
</li>
<li>
<a href=""><i class="fa-solid fa-location-dot"></i></a>
</li>
<li>
<a href=""><i class="xi-kakaotalk"></i></a>
</li>
<li>
<a href=""><i class="fa-solid fa-phone"></i></a>
</li>
</ul>
</div>
<button type="button" id="top_btn">
<span>TOP</span>
</button>
</div>
<script>
$(function() {
$("#top_btn").on("click", function() {
$("html, body").animate({scrollTop:0}, '500');
return false;
});
});
</script>