문제

Does PySide WebView not support these tags? Or is there anyway to support these tags?

This is my SVG Code. I have made an SVG circle which takes this filter and performs some color transition using javascript

     <defs>
        <filter id="blurr">
            <feGaussianBlur in="SourceAlpha" stdDeviation="1" />
            <feOffset dx="1" dy="1" />
            <feMerge>
                <feMergeNode />
                <feMergeNode in="SourceGraphic" />
            </feMerge>
        </filter>
    </defs>

In PySide, I have made a simple WebView which displays this HTML file.

The HTML file shows the color transition properly in browser but in PySide, It doesn't show any color change.

도움이 되었습니까?

해결책

According to this bug report, filters are not supported and it seems the project has no plans to do so given that the bug has been closed.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top