0

我的 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);
    );
};

谢谢!

4

1 回答 1

2

您需要在选择器表达式周围加上引号,即 $(".hover_top") 而不是 $(.hover_top)。

您还需要查看 .css() 函数在 jQuery 中的使用方式 - http://api.jquery.com/css/

于 2012-08-23T23:37:12.550 回答