1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- $(function () {
- $('.customerService .iconfont').on('click',function (event) {
- $('.customerService').addClass('bounceOutLeft').removeClass('bounceInLeft');
- $('.customerClose').show();
- event.stopPropagation();
- });
- $('.customerClose').on('click',function () {
- $('.customerService').fadeIn().addClass('bounceInLeft').removeClass('bounceOutLeft');
- $('.customerClose').hide();
- });
- $('.floatWindow .return').click(function(){
- $('html , body').animate({scrollTop: 0},'slow');
- });
- $('.floatWindow .item').hover(function(){
- $(this).find('.itemCon').show();
- },function(){
- $(this).find('.itemCon').hide();
- });
- $('.demoCenter').hover(function () {
- $(this).find('.demoCon').show();
- },function(){
- $(this).find('.demoCon').hide();
- });
- $('.pull-right .item').on('mouseenter',function () {
- $('.demoCenter .demoCon').hide();
- });
- $('#nav .pull-right .item').on('mouseenter',function () {
- $(this).find('.list').addClass('on');
- });
- $('#nav .pull-right .item').on('mouseleave',function () {
- $(this).find('.list').removeClass('on');
- });
-
-
- var crtTypeCode = $("body").attr("crt-type-code");
- if(!crtTypeCode){
- // 首页
- }
- var channel = $("[type-code]");
- if(channel == null || channel.length <= 0){
- // 首页
- }else{
- for(var i = 0;i < channel.length;i++){
- console.log(crtTypeCode + "===" + $(channel[i]).attr("type-code"))
- if($(channel[i]).attr("type-code") === crtTypeCode){
- $(channel[i]).find("a").addClass("on");
- }
- }
- }
- });
|