Template:Scroll

From 2013.igem.org

(Difference between revisions)
 
(8 intermediate revisions not shown)
Line 1: Line 1:
<html>
<html>
<head>
<head>
-
<script src="http://markgoodyear.com/labs/scrollup/js/lib/jquery-1.9.1.min.js"></script>
+
<style type="text/css">
-
<script src="http://markgoodyear.com/labs/scrollup/js/jquery.scrollUp.min.js"></script>
+
#scrollUp {
-
<link rel="javascript" href="https://2013.igem.org/Team:Shenzhen_BGIC_0101/jquery.easing.min?action=raw&ctype=text/javascript" type="text/javascript" />
+
-
  <style>
+
-
    #scrollUp {
+
bottom: 20px;
bottom: 20px;
right: 20px;
right: 20px;
-
  }
+
height: 38px;  /* Height of image */
 +
width: 38px; /* Width of image */
 +
background: url(https://static.igem.org/mediawiki/2013/8/87/Top.png) no-repeat;
 +
}
</style>
</style>
 +
      <script src="http://markgoodyear.com/labs/scrollup/js/lib/jquery-1.9.1.min.js"></script>
 +
      <script src="http://markgoodyear.com/labs/scrollup/js/jquery.scrollUp.min.js"></script>
 +
</head>
<script>
<script>
Line 23: Line 26:
        scrollDistance: 300, // Distance from top/bottom before showing element (px)
        scrollDistance: 300, // Distance from top/bottom before showing element (px)
        scrollFrom: 'top', // 'top' or 'bottom'
        scrollFrom: 'top', // 'top' or 'bottom'
-
        scrollSpeed: 150, // Speed back to top (ms)
+
        scrollSpeed: 300, // Speed back to top (ms)
-
        easingType: 'easeInOutCubic', // Scroll to top easing (see http://easings.net/)
+
        easingType: 'linear', // Scroll to top easing (see http://easings.net/)
-
        animation: 'Fade', // Fade, slide, none
+
        animation: 'fade', // Fade, slide, none
        animationInSpeed: 200, // Animation in speed (ms)
        animationInSpeed: 200, // Animation in speed (ms)
        animationOutSpeed: 200, // Animation out speed (ms)
        animationOutSpeed: 200, // Animation out speed (ms)
-
        scrollText: '<img src="img/top.png" style="height: 38px; width: 38px; "/>', // Text for element, can contain HTML
+
        scrollText: 'top', // Text for element, can contain HTML
-
        scrollTitle: 'top', // Set a custom <a> title if required. Defaults to scrollText
+
        scrollTitle: false, // Set a custom <a> title if required. Defaults to scrollText
-
        activeOverlay: '#478', // Set CSS color to display scrollUp active point, e.g '#00FFFF'
+
        scrollImg: true, // Set true to use image
-
        zIndex: 138438 // Z-Index for the overlay
+
        activeOverlay: false, // Set CSS color to display scrollUp active point, e.g '#00FFFF'
 +
        zIndex: 2147483647 // Z-Index for the overlay
});
});
});
});
-
 
-
</script>
 
-
</head>
+
// Destroy example
 +
$(function(){
 +
$('.destroy').click(function(){
 +
$.scrollUp.destroy();
 +
})
 +
});
 +
 
 +
</script>
</html>
</html>

Latest revision as of 03:32, 27 August 2013