モバイル端末で:active、:hover がうまくアニメーションをトリガーできない問題の解決策
CSS3 でアニメーションを定義し、:hover 疑似クラスを使用してアニメーションを呼び出す場合、モバイル端末ではアニメーションをうまく実行できません
オープンクラスを定義し、オープンクラスが満たされたときにアニメーションをトリガーします
js イベントを使用してアニメーションを制御し、スライドするときにオープンクラスを追加します。 、アニメーションクラスと同じ時間までに open の削除を遅らせます
この方法でアニメーションを非常にうまく制御できます
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" /> <title></title> <style> .nav{width:100%;height: 200px;background-color: blue;} /*动画调用满足条件*/ .nav.open{-webkit-animation:change 2s linear running} /*定义动画*/ @-webkit-keyframes change{ from{height: 200px;} to{height: 300px;} } </style> </head> <body> <div class="nav"></div> <script type="text/javascript"> var nav=document.querySelector('.nav');//获取div nav.addEventListener("touchstart",StartAnimation,false);//添加触摸事件 //开始动画 function StartAnimation() { document.querySelector('.nav').className="nav open";//添加open类 setTimeout('StopAnimation()',2000);//延迟关闭动画 移除open类 } //结束动画 function StopAnimation() { document.querySelector('.nav').className="nav"; } </script> </body></html>