animate() - Using Pre-defined Values - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:animate

Description

animate() - Using Pre-defined Values

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("button").click(function(){
        $("div").animate({
            height: 'toggle'
        });//ww w .ja v a  2s .co m
    });
});
</script>
</head>
<body>

<button>Start Animation</button>

<div style="background:#98bf21;height:100px;width:100px;position:absolute;"></div>

</body>
</html>

Related Tutorials