我正在使用d3 v4
来渲染SVG图形。我在几个<path>
元素上使用clipPath。我在rect元素上有平移行为,而clipPath正在帮助隐藏一些路径元素。在android中平移时。 clipPath可以根据需要运行,但是在iOS中进行平移时,绘图会变得很时髦。见下文:
BEFORE
我使用以下代码实现了SVG剪辑:
this.line = d3.line()
.curve(d3.curveMonotoneX)
.x((d) => this.xScale(this.getDate(d)))
.y((d) => this.yScale(d.kWh));
this.area = d3.area()
.curve(d3.curveMonotoneX)
.x((d) => {
return this.xScale(this.getDate(d))
})
.y0(this.height)
.y1((d) => this.yScale(d.kWh));
// Definition for clipPath
this.svg.append("defs").append("clipPath")
.attr("id", "clip")
.append("rect")
.attr("width", this.width)
.attr('transform', 'translate(0,-20)')
.attr("height", this.height + 20);
// clipPath added to area
var areaPath = this.focus.append("path")
.datum(this.data)
.attr("class", "area")
.attr('height', this.height)
.attr('fill-opacity', .2)
.attr('clip-path', 'url(#clip)')
.attr("d", this.area)
.attr("transform", "translate(0," + 80 + ")")
.style("fill", "url(#gradient)");
// clipPath added to the line
var linePath = this.focus.append('path')
.datum(this.data)
.attr('class', 'line')
.attr('fill', 'none')
.attr('clip-path', 'url(#clip)')
.attr('stroke', '#31B5BB')
.attr('stroke-width', '2px')
.attr("transform", "translate(0," + 80 + ")")
.attr('d', this.line);
他是缩放时调用的缩略图。
private zoomed = () => {
if (this.isMinZooming) return;
let diff,
domain,
minBuffer,
maxBuffer,
t;
t = d3.event.transform;
// loose mobile events
if (isNaN(t.k)) return;
this.xScale.domain(t.rescaleX(this.x2Scale).domain());
diff = this.daydiff(this.xScale.domain()[0], this.xScale.domain()[1]);
// Redraw Axis
this.xAxis = d3.axisBottom(this.xScale).tickSize(0).tickFormat(d3.timeFormat('%b'));
this.focus.select(".axis--x").call(this.xAxis);
// Redraw Paths. This is where the redraw function gets messy in the iOS webview.
this.focus.select(".area").attr("d", this.area);
this.focus.select('.line').attr('d', this.line);
...
}
使用clipPath时有没有人遇到过同样的问题?
答案 0 :(得分:0)
我想出了这个问题。这是一个混蛋。我在我的css文件中定义了某个地方:
function toggleSigns(id) {
$("#"+id+" .adl-signs").html(function(_, html) {
return $.trim(html) == '+' ? '-' : '+';
});
}
在所有浏览器中,这适用于.area{
clip-path: url(#clip);
}
和<rect>
,但对于<path>
,它会呈现上述显示错误。
而是在单独的iOS webview
文件中定义此内容,我将其内联定义为我想要应用于此的所有CSS
:
SVG Object
这个错误让我发疯,但我很高兴我找到了解决方案。