1

我想在给开发者发电子邮件之前我会问你们所有人。是否有人熟悉 CSS 悬停时屏幕上出现的奇怪“噪音”?只有当我在 cssMap 函数中使用变量而不是数字时才会发生这种情况,如下所示。我正在使用Winston Wolf 的 CSS Clickable Map。在这里查看实际操作:http: //animalnecessity.com/company/where-to-buy

var windowWidth=J(window).width();
            console.log(windowWidth);

            if (windowWidth>500 && windowWidth<750){
                var size= 750;
            }
            else if (windowWidth>750 && windowWidth<960){
                var size= 850;
            }
            else if (windowWidth>960){
                var size= 960;
            }
            else
                console.log('Not working');


            J(function(J)   
            {       
                J('#map-usa').cssMap(       
            {           
                'size' : size,          
                'tooltips' : 'floating',            
                'cities': false,                    
            });     
            }); 
4

1 回答 1

3

您的大陆图片似乎已损坏:http ://animalnecessity.com/skin/frontend/default/animalnecessity/cssmap-continents/continents-960.png

大陆

它在 Chrome 中: 在此处输入图像描述

于 2013-03-26T00:26:37.927 回答