init.js 327 B

123456789101112
  1. jQuery(document).ready(function ($) {
  2. $("#bmlcount")
  3. .countdown("2014/09/27 09:27:00", function(event) {
  4. $(this).text(event.strftime('in %D days %H:%M:%S'));
  5. });
  6. $(window).scroll(function() {
  7. var scroll = $(window).scrollTop();
  8. if (scroll >= 11950) {
  9. $("#heart").addClass("pulse");
  10. }
  11. });
  12. });