main.js 976 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. $( document ).ready(function() {
  2. // $(window).scroll(function(){
  3. // // console.log($(this).scrollTop());
  4. // if ( $(this).scrollTop() >= 200 ){
  5. // $('.gotop-btn').css('visibility', 'visible').fadeIn();
  6. // }else{
  7. // $('.gotop-btn').fadeOut();
  8. // }
  9. // });
  10. //scroll-top btn
  11. // $('.gotop-btn').click(function(){
  12. // $('html, body').animate({
  13. // scrollTop:0
  14. // },800)
  15. // });
  16. //swicher-input
  17. $('.swicher__items').on('click', function(){
  18. $(this).siblings().removeClass('active')
  19. $(this).addClass('active')
  20. })
  21. $('.cyResult__more').on('click', function(){
  22. $(this).toggleClass('is-hidden')
  23. $('.cyResult__otherInfo').toggleClass('is-open')
  24. })
  25. //progress bar
  26. $('#uploadLogo').on('click', function(e){
  27. e.preventDefault()
  28. $(".progress-bar").animate({
  29. width: "100%"
  30. }, 250 );
  31. })
  32. })