webif/var/mongoose/lib/totop
hummypkg 7113208940 add totop
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@400 2a923420-c742-0410-a762-8d5b09965624
2011-09-14 22:38:22 +00:00

14 lines
415 B
Plaintext

puts {
<script type="text/javascript" src="/js/jquery.ui.totop.js"></script>
<script type="text/javascript" src="/js/easing.js"></script>
<link href=/css/ui.totop.css rel=stylesheet type=text/css />
<script type=text/javascript>
$(document).ready(function() {
$().UItoTop({easingType: 'easeOutQuart'});
$('.backtotop').click(function() {
$('html, body').animate({scrollTop: 0}, 500);
});
});
</script>
}