1
私は誰かがボタンをクリックするたびに、各画像にランダムなクリップパスを作ろうとしています。[clip-path img galery]
何らかの理由で、最初の画像のみがカットされます。他は同じままです。
私はcodepenでコードを送信して切り取りました。
ご協力いただきありがとうございます。
https://codepen.io/fredericopimpao/pen/ZvBOwN?editors=1111
var test = document.querySelector('.test')
window.setInterval(function(){
var rand = Math.random()* (200 - 10) + 30;
test.style.setProperty('--ola', rand+'%');
}, 1000);
.test{
clip-path: polygon(var(--ola) 30%, 100% 0%, 100% 100%,0% 100%);
}
img{width:200px;}
<img class="test" src="https://i.ytimg.com/vi/Bor5lkRyeGo/hqdefault.jpg">
<img class="test" src="https://i.ytimg.com/vi/Bor5lkRyeGo/hqdefault.jpg">
<img class="test" src="https://i.ytimg.com/vi/Bor5lkRyeGo/hqdefault.jpg">
<img class="test" src="https://i.ytimg.com/vi/Bor5lkRyeGo/hqdefault.jpg">
は、迅速な応答をありがとうございました、そして完璧な説明。 – fredericopimpao