将点添加到天气图
我的网站上有一张天气图 (jpg),但它没有指示城市。我想添加点(带有索引)显示特定城市。最好的方法是什么?我可以使用 jquery 吗?
I have a weather map on my website (jpg), but it does not indicate cities. I would like to add point (with an index) show particular cities. What is the best way to do that. Can I use jquery for that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
HTML:
CSS:
要添加另一个城市,只需在 HTML 中添加另一个
并为其指定另一个类名,就像 pos3 一样。然后,您可以将
.pos3
添加到 CSS 代码中,并使用top
和left
值更改坐标HTML:
CSS:
To add another city, just add another
<a ...>
to your HTML and give it another classname, like pos3. Then you can add.pos3
to you CSS-code and change the coordinates withtop
andleft
values