gpt4 book ai didi

javascript - IOS 应用程序 webview SVG ClipPath 问题

转载 作者:可可西里 更新时间:2023-11-01 03:00:26 25 4
gpt4 key购买 nike

我正在使用 d3 v4渲染 SVG 图形。我正在使用 clipPath在几个<path>元素。我在矩形元素上有平移行为,并且 clipPath 有助于隐藏一些路径元素。在 android 中平移时。 clipPath 会根据需要工作,但在 iOS 中平移时,绘图会变得很奇怪。见下文:

之前

BEFORE

之后 AFTER PANNING

我已经使用以下代码实现了 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);

他是zoom的摘录,叫on zoom。

    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 时遇到过同样的问题吗?

最佳答案

我想通了这个问题。真是个 SCSS 。我在我的 css 文件中的某处定义:

.area{
clip-path: url(#clip);
}

在所有浏览器中这都适用于 <rect><path> , 但对于 iOS webview它会呈现上述显示错误。

而是在单独的 CSS 中定义它文件,我为所有SVG Object定义了内联我想这样应用它:

  var areaPath = this.focus.append("path")
...
.attr('clip-path', 'url(#clip)') //defining it inline

这个错误让我抓狂,但我很高兴我找到了解决方案。

关于javascript - IOS 应用程序 webview SVG ClipPath 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41104931/

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