newyear.js 318 B

12345678910111213141516
  1. function autoFlashHeight(){
  2. $(".newyear2017").height($(window).height());
  3. $(".newyear2017").width($(window).width());
  4. };
  5. $(function(){
  6. $("#ny-quit").click(function(){
  7. $(".newyear2017").removeClass("show");
  8. });
  9. $(".ny-open").click(function(){
  10. $(".newyear2017").addClass("show");
  11. });
  12. });