init.js 617 B

123456789101112131415161718192021
  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. $("#bmlcount2")
  7. .countdown("2024/09/27 09:27:00", function(event) {
  8. $(this).text(event.strftime('%D days %H:%M:%S'));
  9. });
  10. $('a').on('click touchend', function() {
  11. var link = $(this).attr('href');
  12. window.open(link,'_self');
  13. return false;
  14. });
  15. $(window).scroll(function() {
  16. var scroll = $(window).scrollTop();
  17. if (scroll >= 11950) {
  18. $("#heart").addClass("pulse");
  19. }
  20. });
  21. });