お世話になります。
HTMLは下記のような構造になっており、
containerクラス下をまとめてアニメーションさせたいのですが、
その中でcolumnsクラスのみ、アニメーション対象から除外したいと思っています。
どのように指定すればよいのか、ご教授頂けますと幸いです。
宜しくお願いいたします。
HTML
1<body> 2 <div class="container"> 3 <p class="left-text clearfix">hogehoge</p> 4 <p class="right-text clearfix">hogehoge</p> 5 <img class="character" alt="hogehoge" src="../../hogehoge/hogehoge/hogehoge.png"> 6 <div class="board"> 7 <div class="columns"> 8 </div> 9 </div> 10 <div class="actions"> 11 <button id="prev" class="action clearfix animation-trigger"></button> 12 <button id="center" class="action clearfix animation-trigger"></button> 13 <button id="flw" class="action clearfix animation-trigger"></button> 14 </div> 15 </div> 16</body>
jQuery
1$(document).on("click", ".animation-trigger", function () { 2 $('.container').animate( { opacity: 2 }, { 3 duration: 450, easing: "swing", 4 step: function (now) { 5 $(this).css({ transform: 'rotateX(' + now * 375 + 'deg)' }) 6 } 7 }); 8});

バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2018/11/12 07:47