jQuery функция jQuery.fx.off

Раздел: Эффекты jQuery

Описание: Глобально отключает все анимации.

Установка этого свойства в true отключит всю анимацию (произойдет мгновенно).

Анимация может быть включена обратно путем установки значения данного свойства в false./p>

Живые примеры:

html:
<!doctype html>
<html lang="en">
<head>
 <meta charset="utf-8">
 <title>jQuery.fx.off demo</title>
 <style>
 div {
 width: 50px;
 height: 30px;
 margin: 5px;
 float: left;
 background: green;
 }
 </style>
 <script src="https://code.jquery.com/jquery-1.10.2.js"></script >
</head>
<body>
<input type="button" value="Запуск">
<button>Toggle fx</button>
<div></div>
<script>
var toggleFx = function() {
 $.fx.off = !$.fx.off;
};
toggleFx();
$( "button" ).click( toggleFx );
$( "input" ).click(function() {
 $( "div" ).toggle( "slow" );
});
</script >
</body>
</html>

Попробуйте разницу Включив или Отключив jQuery.fx.off

jQuery.fx.off = off


«Поделиться»

Комментарии - 0

Добавить комментарий