鼠標移入時,文字逐一動畫出現(xiàn),但是鼠標移開后是同步移開而不是逐一移開
figure?figcaption?p,h2?{ ????transition:?all,?0.35s; } .fimg?figcaption?p?{ ????transform:?translate(-100px); ????margin:?5px; } /*nth-of-type(n):同級標簽的兄弟元素,可寫數(shù)字,也可以通過寫odd或者even來設置奇偶*/ .fimg:hover?figcaption?p:nth-of-type(1)?{ ????transition-delay:?0.05s; } .fimg:hover?figcaption?p:nth-of-type(2)?{ ????transition-delay:?0.1s; } .fimg:hover?figcaption?p:nth-of-type(3)?{ ????transition-delay:?0.15s; } .fimg:hover?figcaption?p?{ ????transform:?translate(0px,?0px); }
2015-10-19
恭喜樓主啊,幫忙采納拿積分,謝樓主打賞。
2015-10-19
找到錯誤原因了,粗心將.fimg:hover?figcaption?p:nth-of-type(1)里面的hover也加進去了