d3.js怎样将图片设置为地图的背景呢
我这边用d3.js画了一个世界地图,我想将世界地图的陆地上面添加背景图片,我知道的只有用fill设置纯色的背景颜色;
但是怎么用图片设置背景呢?
d3.json("./js/world1.json", function(error, world) {
if (error) throw error;
svg.insert("path", ".graticule").datum(topojson.feature(world, world.objects.land)).attr("class", "land").attr("d", path);
svg.insert("path", ".graticule")
.datum(topojson.mesh(world, world.objects.countries, function(a, b) { return a !== b; }))
.attr("class", "boundary")
.attr("d", path);
});
我用的css设置的.land的fill,但是这个只是纯色
请问怎么设置图片为背景呢?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论