Javascript Animate无法正常工作

时间:2014-03-20 07:47:51

标签: javascript jquery html css jquery-animate

我有一个div宽度id:“cen”,高度和宽度为50px。

$(document).ready(function() {
    $("#cen").animate({
        height: 500px,
        width: "500px",
    }, 5000, function() {
        // Animation complete.
    });
});

但它不起作用。

4 个答案:

答案 0 :(得分:2)

500px http://jsfiddle.net/myn9d/

周围加上引号
$(document).ready(function () {
    $( "#cen" ).animate({
        height:"500px",
        width:"500px",
    }, 5000, function() {
        // Animation complete.
    });
});

答案 1 :(得分:2)

使用此代码正常工作

$(document).ready(function () {
$( "#cen" ).animate({
height:"500px",
width:"500px",
}, 5000, function() {
// Animation complete.
});
});

答案 2 :(得分:1)

语法高度出错应该是“500px”

应该是

 $(document).ready(function () {
$( "#cen" ).animate({
height:"500px",
width:"500px",
}, 5000, function() {
// Animation complete.
});
});

请查看此演示Demo

答案 3 :(得分:-1)

$(document).ready(function () {

    $( "#cen" ).animate({

        height:"500px",
        width:"500px",
    }, 5000, function() {

    });

});