init.js 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. $(document).ready(function() {
  2. $('#bml').countdown({until: new Date(2014, 9 - 1, 27)});
  3. $("a#inline").fancybox({});
  4. });
  5. var s = skrollr.init(/*other stuff*/);
  6. //The options (second parameter) are all optional. The values shown are the default values.
  7. skrollr.menu.init(s, {
  8. //skrollr will smoothly animate to the new position using `animateTo`.
  9. animate: true,
  10. //The easing function to use.
  11. easing: 'sqrt',
  12. //Multiply your data-[offset] values so they match those set in skrollr.init
  13. scale: 2,
  14. //How long the animation should take in ms.
  15. duration: function(currentTop, targetTop) {
  16. //By default, the duration is hardcoded at 500ms.
  17. return 500;
  18. //But you could calculate a value based on the current scroll position (`currentTop`) and the target scroll position (`targetTop`).
  19. //return Math.abs(currentTop - targetTop) * 10;
  20. },
  21. //If you pass a handleLink function you'll disable `data-menu-top` and `data-menu-offset`.
  22. //You are in control where skrollr will scroll to. You get the clicked link as a parameter and are expected to return a number.
  23. handleLink: function(link) {
  24. return 400;//Hardcoding 400 doesn't make much sense.
  25. }
  26. });