gpt4 book ai didi

jquery - Jvectormap 1.2.2 颜色问题

转载 作者:行者123 更新时间:2023-12-01 07:19:54 26 4
gpt4 key购买 nike

我正在使用最新的 Jvectormap (1.2.2),但找不到任何设置所有国家/地区颜色的示例。我相信在以前的版本中它只是“颜色:”,但现在这个已经停产了?

下面的代码有效,但颜色部分无效。我在网站上使用白色背景,因此希望默认情况下所有国家/地区都有不同的颜色。

 <script>
$(function(){
$('#world-map').vectorMap({
map: 'world_mill_en',
color: '#000000',
backgroundColor: '#ffffff',
series: {
regions: [{
values: {
IN:'#33250B',
US:'#003366'
}
}]
}
})
});
</script>

最佳答案

我不太确定你的意思,但要设置你可以使用的所有国家/地区颜色:

var regionStyling = {initial: {fill: '#128da7'},hover: {fill: "#A0D1DC"}};

jQuery('#world-map').vectorMap({
map: 'world_mill_en',
normalizeFunction: 'polynomial',
regionStyle:regionStyling,
backgroundColor: '#383f47',
series: {regions: [{values: {},attribute: 'fill'}]}
});

这对我有用,如果您想指定可以使用的每个国家/地区:

 jQuery('#world-map').vectorMap({
map: 'world_mill_en',
normalizeFunction: 'polynomial',
backgroundColor: '#383f47',
series: {regions: [{values: {"US" : "#000"},attribute: 'fill'}]}
});

关于jquery - Jvectormap 1.2.2 颜色问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14965181/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com