js.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. $(function () {
  2. $('.customerService .iconfont').on('click',function (event) {
  3. $('.customerService').addClass('bounceOutLeft').removeClass('bounceInLeft');
  4. $('.customerClose').show();
  5. event.stopPropagation();
  6. });
  7. $('.customerClose').on('click',function () {
  8. $('.customerService').fadeIn().addClass('bounceInLeft').removeClass('bounceOutLeft');
  9. $('.customerClose').hide();
  10. });
  11. $('.floatWindow .return').click(function(){
  12. $('html , body').animate({scrollTop: 0},'slow');
  13. });
  14. $('.floatWindow .item').hover(function(){
  15. $(this).find('.itemCon').show();
  16. },function(){
  17. $(this).find('.itemCon').hide();
  18. });
  19. $('.demoCenter').hover(function () {
  20. $(this).find('.demoCon').show();
  21. },function(){
  22. $(this).find('.demoCon').hide();
  23. });
  24. $('.pull-right .item').on('mouseenter',function () {
  25. $('.demoCenter .demoCon').hide();
  26. });
  27. $('#nav .pull-right .item').on('mouseenter',function () {
  28. $(this).find('.list').addClass('on');
  29. });
  30. $('#nav .pull-right .item').on('mouseleave',function () {
  31. $(this).find('.list').removeClass('on');
  32. });
  33. var crtTypeCode = $("body").attr("crt-type-code");
  34. if(!crtTypeCode){
  35. // 首页
  36. }
  37. var channel = $("[type-code]");
  38. if(channel == null || channel.length <= 0){
  39. // 首页
  40. }else{
  41. for(var i = 0;i < channel.length;i++){
  42. console.log(crtTypeCode + "===" + $(channel[i]).attr("type-code"))
  43. if($(channel[i]).attr("type-code") === crtTypeCode){
  44. $(channel[i]).find("a").addClass("on");
  45. }
  46. }
  47. }
  48. });