最新回答 / xdlumia
不加all ?指的就是默認(rèn)。默認(rèn)就是全部。css 里只有hove.用click 需要js寫鼠標(biāo)時(shí)間 也是這么添加的。
2016-05-01
已采納回答 / 傾昀
是的,第一個(gè)延遲0.05秒就是從開始0.05秒執(zhí)行,第二個(gè)延遲0.1秒就是從0.1秒開始執(zhí)行,單個(gè)對象的延遲超過0.35秒就不執(zhí)行了
2016-04-24
已采納回答 / zhangxs
? ? 需要在p不是hover狀態(tài)的時(shí)候同樣設(shè)置transition屬性,這樣就不是同時(shí)全部消失了 ??????.test1 p {? ? ? ? ? transform: translate(-150px, 0);? ? ? ? ? transition: all 1s;? ? ? ?}? ? ? ?.test1:hover p {? ? ? ? ? transform: translate(0, 0);? ? ? ? ? transition: all 1s;? ? ? ?}? ? ? ?.test1...
2016-04-07