您好,登錄后才能下訂單哦!
代碼:
完整代碼:
<!DOCTYPE?html> <html> <head> <meta?charset="UTF-8"> <title></title> <style?type="text/css"> *{ margin:?0; padding:?0; } .box{ background-color:?#00B83F; } .flag{ position:?fixed; width:?1px; height:?100%; background-color:?red; left:?400px; top:0; } .btn{ position:?fixed; bottom:?0; left:?0; right:?0; height:?100px; background-color:?rgba(0,0,0,.4); } .main{ width:?300px; height:?300px; background-color:?#ccc; animation:?move?3s?2; } @keyframes??move{ from{ transform:?translateX(0); } to{ transform:?translateX(100px); } } </style> </head> <body> <div?class="box"> <div?class="main"></div> </div> <div?class="flag"></div> <div?class="btn"> <button>顯示</button> <button>隱藏</button> </div> <script?src="js/jquery.js"?type="text/javascript"?charset="utf-8"></script> <script?type="text/javascript"> //?顯示 $('button:eq(0)').click(function(){ $('.box').show(); }); //?隱藏 $('button:eq(1)').click(function(){ $('.box').hide(); }); </script> </body> </html>
經(jīng)過(guò)測(cè)試:
每次在切換顯示父元素時(shí),子元素都會(huì)重新開(kāi)始執(zhí)行動(dòng)畫(huà)
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。