.switchClass( removeClassName, addClassName [, duration ] [, easing ] [, complete ] )
.switchClass( removeClassName, addClassName [, options ] )
duration: 这是一个字符串或数字。它指定动画将运行多长时间。默认值为400。
easing: 是一个字符串,用于指定用于过渡的缓动功能。其默认值为swing。
complete: 这是在元素完成效果后为每个元素调用的回调方法。
Children: 这是布尔类型,用于指定是否应将动画另外应用于匹配元素的所有后代。默认值为FALSE。
Queue: 这是布尔类型或字符串类型,用于指定是否将动画放置在效果队列中。其默认值为TRUE。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Switch Class Example</title>
<link href="http://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css" rel="stylesheet">
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<!-- CSS -->
<style>
.LargeClass
{
font-family: NewTimesRoman;
font-size: large;
font-weight: bold;
color: Red;
}
.NormalClass
{
font-family: Arial;
font-size: small;
font-weight: bold;
color: Blue;
}
</style>
<script>
$(function() {
$('#btnSwitch').click(function(){
$(".NormalClass").switchClass("NormalClass","LargeClass",'fast');
$(".LargeClass").switchClass("LargeClass","NormalClass",'fast');
return false;
});
});
</script>
</head>
<body>
<div class="NormalClass">
You are here at bianchenghao6
</div>
<div class="NormalClass">
bianchenghao6 is commited to provide easy and point to point learning of various tutorials.
</div>
<br />
<input type="button" id="btnSwitch" value="Switch Class" />
</body>
</html>