我正在嘗試創建一個響應SVG。我已經成功地創建了一個例子SVG:d3生成的SVG不響應
<html xmlns:xlink="http://www.w3.org/1999/xlink"><head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
</head>
<body>
<div id="container">
<svg viewBox="0 0 600 200" preserveAspectRatio="xMidYMid" id="chart">
<circle fill="red" cy="100" cx="100" r="100"></circle>
<circle fill="blue" cy="100" cx="300" r="100"></circle>
<circle fill="green" cy="100" cx="500" r="100"></circle>
</svg>
</div>
</body></html>
https://jsfiddle.net/andrewsu/kombdqL2/4/
https://gist.github.com/andrewsu/d3ed340495a2f21a25f8f69dedb2096a
如果你在的jsfiddle版本調整面板邊界,你可以看到圓圈大小比例適當。
我想用D3創建完全相同的SVG。
<html xmlns:xlink="http://www.w3.org/1999/xlink"><head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<script type="text/javascript" src="http://d3js.org/d3.v3.js"></script>
</head>
<body>
<div id="container">
</div>
<script type="text/javascript">
var width=600, height=200;
var svg = d3.select("#container").append("svg")
.attr("id","chart")
.attr("preserveAspectRatio", "xMidYMid")
.attr("viewbox", "0 0 "+ width + " " + height);
svg.append("circle")
.attr("r","100")
.attr("cx","100")
.attr("cy","100")
.attr("fill","red");
svg.append("circle")
.attr("r","100")
.attr("cx","300")
.attr("cy","100")
.attr("fill","blue");
svg.append("circle")
.attr("r","100")
.attr("cx","500")
.attr("cy","100")
.attr("fill","green");
</script>
</body></html>
https://jsfiddle.net/andrewsu/g1x3s2ny/5/
https://gist.github.com/andrewsu/bf0e7549934f93ac40a416dc17bb7b1e
儘可能靠近我可以告訴大家,呈現的HTML是完全一樣的,但第二個例子不能正常工作(見的jsfiddle)。
奇怪的是,如果我使用我的瀏覽器的檢查器來更改viewBox屬性中的四個數字中的任何一個,則該行爲立即按預期工作。
想法?
\ * headdesk \ *謝謝 – Andrew
奇怪的是,如果我使用在嵌入HTML的SVG中全部使用小寫'viewbox',它工作正常。所以不知何故,它是強加大小寫敏感性的D3 ... – Andrew
我有同樣的問題。如果只有我的眼睛區分大小寫。 – mbomb007