gpt4 book ai didi

jquery - jVectorMaps定位

转载 作者:行者123 更新时间:2023-11-28 09:45:45 25 4
gpt4 key购买 nike

我正在使用 jVectormaps 开发一个简单的网站。我有一张欧洲 map ,我想将它放在屏幕的右侧。 map 的高度为 100%,因此只要用户调整窗口大小时它就会缩放。但问题是我的 map 居中,我无法找到一种方法将其放置在我想要的任何位置。

当前代码:

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/reset.css" type="text/css" media="screen"/>
<link rel="stylesheet" href="css/styles.css" type="text/css" media="screen"/>
<link rel="stylesheet" href="css/jquery-jvectormap-1.2.2.css" type="text/css" media="screen"/>

<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>

<script src="jquery-jvectormap-1.2.2.min.js"></script>
<script src="jquery-jvectormap-world-mill-en.js"></script>
<script src="jquery-jvectormap-europe-mill-en.js"></script>
</head>
<body>
<div id="map"></div>
<script>
$(function (){
$('#map').vectorMap({
map: 'europe_mill_en',
backgroundColor: 'transparent',
zoomOnScroll: false,
regionStyle: {
initial: {
fill: 'red'
},
hover: {
fill: 'yellow'
}
}
});
});
</script>
</body>
</html>

CSS:

html, body {
height: 100%;
}

#map {
height: 100%;
}

我尝试使用 display: block 和 float: right,但这似乎不起作用。我在网站上提供的文档中找不到任何帮助。

有什么建议吗?

提前致谢

最佳答案

这似乎与 HTML/CSS 而不是 jVectorMap 有更多关系,但无论如何,您可以尝试将 map 包装在另一个 div 中并将该 div 的内容右对齐:

.wrapper {
text-align: right;
}

<div class="wrapper">
<div id="map"></div>
</div>

关于jquery - jVectorMaps定位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25265222/

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