#box1 div:hover{
animation-play-state: paused;
}
animation--play-state属性指定动画是否正在运行或已暂停。
语法: animation-play-state: paused|running;
paused 指定暂停动画
running 指定正在运行的动画
在Dreamweaver 里面操作就好 在菜单栏里选择(常用)——在常用里面选择图标(图像)—点击出(鼠标经过图像)
onmouseover和onmouseout
$(document).ready(function(){
$('#bigpicarea').mouseover(function(){
clearTimeout(timer);
});
$('#bigpicarea').mouseout(function(){
timer = window.setTimeout(auto, offset);
});
});
郁闷~~咋没人回答你的问题,我也想知道呢