http://dan-silver.github.io/ElementTransitions.js/からこのトランジション プラグインを使用しようとして いますが、W3 検証プロセスに合格しません。エラーAttribute et-in not allowed on element article at element が表示されますこの時点で要素の記事で許可されていない属性 et-out この時点で、jqueryでこれを回避する方法はありますか?
これはコードサンプルです
<article class="et-wrapper et-rotate" **et-in="moveFromTop" et-out="fade"**>
<div class="et-page features-box">
<i class="fa fa-bookmark-o"></i>
<h3>Click This Box</h3>
<p>Now that we know who you are, I know who I am. I'm not a mistake! It all makes sense! </p>
</div>
<div class="et-page features-box">
<p>Now that we know who you are, I know who I am. I'm not a mistake! It all makes sense! </p>
<p><a href="#" class="btn btn-green">View More</a></p>
</div>
</article>
et-in="moveFromTop"
et-out="fade"
それを機能させるには、記事クラス内にある必要があります。
ありがとうございました!