Latest web development tutorials

jQuery UI API - .removeClass ()

category

Special effects (Effects) | Effects Core (Core Effects) | Method overloading (Method Overrides)

usage

Description: When the animation style changed for each element of the set of matched elements removed within the specified Class.

Returns: the jQuery

.removeClass( className [, duration ] [, easing ] [, complete ] )

参数 类型 描述 默认值
className String 要从每个匹配的元素的 class 属性中移除的一个或多个 class 名称,多个 class 名称用空格分隔 。
duration Number 或 String 一个字符串或一个数字,指定动画将运行多久。 400
easing String 一个字符串,指示要使用的 easing 函数。 swing
complete Function() 一旦动画完成时要调用的函数。

.removeClass( className [, options ] )

参数 类型 描述
className String 要从每个匹配的元素的 class 属性中移除的一个或多个 class 名称,多个 class 名称用空格分隔 。
options Object 所有的动画设置。所有的属性是可选的。
  • duration (默认值: 400
    类型:Number 或 String
    描述:一个字符串或一个数字,指定动画将运行多久。
  • easing (默认值: swing
    类型:String
    描述:一个字符串,指示要使用的 easing 函数。
  • complete
    类型:Function()
    描述:一旦动画完成时要调用的函数。
  • children (默认值: false
    类型:Boolean
    描述:指定动画是否被应用到匹配元素的所有后代。此功能应慎重使用,因为判断元素是否是动画的后代的代价是很大的,会根据后代的数量线性增长。
  • queue (默认值: true
    类型:Boolean 或 String
    描述:一个布尔值,指示是否将动画放在特效队列中。如果是 false,动画将立即开始。 自 jQuery 1.7 起 ,queue 选项也接受一个字符串,在这种情况下,动画添加到由字符串表示的队列中。

Transition similar to the native CSS, jQuery UI's animation class provides a smooth transition from one state to another state of transition, while ensuring that all the details of the style change is done via CSS without using JavaScript. All class animation, comprising .removeClass() , allows custom duration of the animation and easing function, the animation is complete also provides a callback.

Not all styles can be animated to add. For example, the background image animated. Not any animation style will change at the end of the animation.

The plug-ins extend the jQuery built .removeClass () method. If jQuery UI is not loaded, call .removeClass() method does not simply fail, because the method exists in jQuery. But it is not expected behavior.

Examples

Remove class "big-blue" from the matched elements.

<! Doctype html>
<Html lang = "en">
<Head>
  <Meta charset = "utf-8">
  <Title> .removeClass () Demo </ title>
  <Link rel = "stylesheet" href = "// code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
  <Style>
  div {
    width: 100px;
    height: 100px;
    background-color: #ccc;
  }
  .big-blue {
    width: 200px;
    height: 200px;
    background-color: # 00f;
  }
  </ Style>
  <Script src = "// code.jquery.com/jquery-1.10.2.js"> </ script>
  <Script src = "// code.jquery.com/ui/1.10.4/jquery-ui.js"> </ script>
</ Head>
<Body>
 
<Div class = "big-blue"> </ div>
 
<Script>
$ ( "Div") .click (function () {
  $ (This) .removeClass ( "big-blue", 1000, "easeInBack");
});
</ Script>
 
</ Body>
</ Html>