この記事では、3次元回転無限カルーセルアニメーションを実現するCSSを紹介していますので、参考にしていただければ幸いです。
前の記事 [css で無限カルーセル アニメーションを実装する方法 ] では、水平方向に再生される無限カルーセル アニメーション (以下を参照) を紹介しました。前 別のカルーセル アニメーションを実装するように変更します。
3 次元回転カルーセル
いくつかの小さな変更を加えることで、画像ホイールや大きな画像にさまざまなポリゴン形状を使用できます。 、その結果、さまざまな効果が得られます。この場合、画像は 2 倍の大きさになり、より少ないスペースを使用する三角形の配置で配置されます。シーケンスにはまだ 8 枚の同一の写真があります:
Firefox を使用すると、アニメーションも実行されていることがわかります。追加の JavaScript コードと -webkit を -moz に置き換えるほかに、CSS の #rotator a に -moz-transform-style:preserve-3d; を追加する必要があります。 Inherited が含まれていないためです (Firefox v12 以降)。
この例には少し変更があり、写真をキューの前から後ろに移動しています。前者の場合、キューの後ろから前に移動します。 これを行うには、target.insertBefore(arr[arr.length-1], arr[0]);
target.appendChild(arr[0]);
<div id="stage3"> <div id="rotator3" style="-webkit-animation-name: rotator3; -moz-animation-name: rotator3;"> <a href="1.jpg"><img src="1.jpg" style="max-width:90%" alt="CSSで立体的な立体回転・無限カルーセルアニメーションを実現(コード例)" ></a> <a href="2.jpg"><img src="2.jpg" style="max-width:90%" alt="CSSで立体的な立体回転・無限カルーセルアニメーションを実現(コード例)" ></a> <a href="3.jpg"><img src="3.jpg" style="max-width:90%" alt="CSSで立体的な立体回転・無限カルーセルアニメーションを実現(コード例)" ></a> <a href="4.jpg"><img src="4.jpg" style="max-width:90%" alt="CSSで立体的な立体回転・無限カルーセルアニメーションを実現(コード例)" ></a> <a href="5.jpg"><img src="5.jpg" style="max-width:90%" alt="CSSで立体的な立体回転・無限カルーセルアニメーションを実現(コード例)" ></a> <a href="6.jpg"><img src="6.jpg" style="max-width:90%" alt="CSSで立体的な立体回転・無限カルーセルアニメーションを実現(コード例)" ></a> <a href="7.jpg"><img src="7.jpg" style="max-width:90%" alt="CSSで立体的な立体回転・無限カルーセルアニメーションを実現(コード例)" ></a> <a href="8.jpg"><img src="8.jpg" style="max-width:90%" alt="CSSで立体的な立体回転・無限カルーセルアニメーションを実現(コード例)" ></a> </div> </div>
#stage3 { margin: 2em auto 1em 50%; height: 240px; -webkit-perspective: 1200px; -webkit-perspective-origin: 0 90px; -moz-perspective: 1200px; -moz-perspective-origin: 0 90px; -ms-perspective: 1200px; -ms-perspective-origin: 0 90px; } #rotator3 a { position: absolute; left: -151px; -moz-transform-style: preserve-3d; } #rotator3 a img { padding: 10px; border: 1px solid #ccc; background: #fff; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -ms-backface-visibility: hidden; } #rotator3 a:nth-of-type(1) img { -webkit-transform: rotateX(-90deg) translateZ(100px); -moz-transform: rotateX(-90deg) translateZ(100px); -ms-transform: rotateX(-90deg) translateZ(100px); } #rotator3 a:nth-of-type(2) img { -webkit-transform: translateZ(100px); -moz-transform: translateZ(100px); -ms-transform: translateZ(100px); } #rotator3 a:nth-of-type(3) img { -webkit-transform: rotateX(90deg) translateZ(100px); -moz-transform: rotateX(90deg) translateZ(100px); -ms-transform: rotateX(90deg) translateZ(100px); } #rotator3 a:nth-of-type(n+4) { display: none; } @-webkit-keyframes rotator3 { from { -webkit-transform: rotateX(0deg); } to { -webkit-transform: rotateX(90deg); } } @-moz-keyframes rotator3 { from { -moz-transform: rotateX(0deg); } to { -moz-transform: rotateX(90deg); } } @-ms-keyframes rotator3 { from { -ms-transform: rotateX(0deg); } to { -ms-transform: rotateX(90deg); } } #rotator3 { -webkit-transform-origin: 0 101px; -webkit-transform-style: preserve-3d; -webkit-animation-timing-function: cubic-bezier(1, 0.2, 0.2, 1); -webkit-animation-duration: 2s; -webkit-animation-delay: 1s; -moz-transform-origin: 0 101px; -moz-transform-style: preserve-3d; -moz-animation-timing-function: cubic-bezier(1, 0.2, 0.2, 1); -moz-animation-duration: 2s; -moz-animation-delay: 1s; -ms-transform-origin: 0 101px; -ms-transform-style: preserve-3d; -ms-animation-timing-function: cubic-bezier(1, 0.2, 0.2, 1); -ms-animation-duration: 2s; -ms-animation-delay: 1s; } #rotator3:hover { -webkit-animation-play-state: paused; -moz-animation-play-state: paused; -ms-animation-play-state: paused; }
document.addEventListener("DOMContentLoaded", function() { var rotateComplete = function(e) { with(target.style) { webkitAnimationName = MozAnimationName = msAnimationName = ""; } target.insertBefore(arr[arr.length - 1], arr[0]); setTimeout(function(el) { with(el.style) { webkitAnimationName = MozAnimationName = msAnimationName = "rotator3"; } }, 0, target); }; var target = document.getElementById("rotator3"); var arr = target.getElementsByTagName("a"); target.addEventListener("webkitAnimationEnd", rotateComplete, false); target.addEventListener("animationend", rotateComplete, false); target.addEventListener("MSAnimationEnd", rotateComplete, false); }, false);
以上がCSSで立体的な立体回転・無限カルーセルアニメーションを実現(コード例)の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。