jQuery.fx.off 정보
jQuery jQuery.fx.off본문
jQuery.fx.off
설명 : 모든 애니메이션을 전역으로 비활성화하십시오.
이 속성을 true로 설정하면 true모든 애니메이션 메서드는 효과를 표시하는 대신 요소를 최종 상태로 즉시 설정합니다. 이는 몇 가지 이유로 바람직 할 수 있습니다.
jQuery는 리소스가 적은 장치에서 사용되고 있습니다.
사용자가 애니메이션에 접근성 문제가 발생했습니다.
속성을으로 설정하면 애니메이션을 다시 사용할 수 있습니다 false.
예:
애니메이션 켜기 / 끄기 토글
<!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="Run">
<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>
0
댓글 0개