0
firefoxでsvg> pattern>イメージを回転できません。私のコードはChrome、Opera、Safariで動作し、IEでは試していませんでした。firefoxでsvg> pattern> imageを回転できません
ここでは例です:
function svgClick() {
document.getElementById('circle-image').style.transform = "rotate(180deg)"
}
body {
background-color: black
}
.circle {
stroke-width: 2.1;
stroke-dasharray: 200 200;
}
#circle-image {
transform-origin: 50% 50%;
transform: rotate(90deg);
}
h1 {
font-size: 20px;
color: white;
}
<svg width="58px" height="58px" onclick=svgClick()>
<pattern id="image" height="100%" width="100%">
<image x="10%" y="10%" width="20" height="20" id="circle-image" xlink:href="http://cliparting.com/wp-content/uploads/2016/05/Free-arrows-clipart-free-clipart-graphics-images-and-photos-image-2.png">
</pattern>
<linearGradient id="gradient">
<stop offset="0%" stop-color=" #40fffb " />
<stop offset="100%" stop-color=" #33468b" />
</linearGradient>
<circle cx="27.2" cy="27.2" r="17" fill="url(#image)" stroke="url(#gradient)" class="circle"></circle>
</svg>
<h1>Click on circle to rotate arrow to 180deg<h1>
パターンが唯一のCSSはスタイルを変革、この時点で属性を変換していないサポートしています。 –
私はそれを回転させるために何ができるのかを提案できますか? – user347567