Fade to slow and fast
Description
The following code shows how to animate the first paragraph to fade to an opacity of 0.33 within 600 milliseconds.
Example
<html>
<head>
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {<!-- w w w. j a v a 2 s .c o m-->
$("p:first").click(function() {
$(this).fadeTo("slow", 0.33);
$(this).fadeTo("fast", 0.99);
});
});
</script>
</head>
<body>
<p>
<span>java2s.com</span>
</p>
</body>
</html>