init.js 494 B

1234567891011121314151617
  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. $('a.wish').on('click touchend', function() {
  7. var link = $(this).attr('href');
  8. window.open(link,'_self');
  9. return false;
  10. });
  11. $(window).scroll(function() {
  12. var scroll = $(window).scrollTop();
  13. if (scroll >= 11950) {
  14. $("#heart2").addClass("pulse");
  15. }
  16. });
  17. });