我的 jquery 脚本遇到了一些问题,因为它一直遇到问题
Uncaught SyntaxError: Unexpected token 。
$("#hm_01").mouseover(function(){
$(.hover_top).delay(700).css(opacity: 1;-webkit-transform:translate(-10px,-10px));
$(.hover_top).css(opacity: 1;animation: hover 0.7s;-webkit-animation: hover 0.7s);
$(.hover_bottom).delay(700).css(opacity:1);
$(.hover_bottom).css(animation:reveal 1s;-webkit-animation: reveal 1s);
});
此外,我想知道是否可以通过函数名调用 jquery 脚本。例如,我的 div 有一个onmouseover="script()"并且我的script()定义为
function hm_01(){
$(.hover_top).delay(700).css(
opacity: 1;
-webkit-transform:translate(-10px,-10px);
);
};
谢谢!