7113208940
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@400 2a923420-c742-0410-a762-8d5b09965624
14 lines
415 B
Plaintext
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>
|
|
}
|