hugo-theme-zzo/layouts/partials/etc/go-to-top.html

16 lines
358 B
HTML
Raw Normal View History

{{ if $.Param "enableGoToTop" }}
<div id="gtt">
<div class="gtt">
{{ partial "svgs/arrow/keyboard-arrow-up.svg" (dict "width" 25 "height" 25) }}
</div>
</div>
<script>
$(document).ready(function() {
$('#gtt').hide();
$('.gtt').click(function() {
$("html, body").animate({ scrollTop: 0 }, 250);
});
});
</script>
{{ end }}