분류
jQuery
jQuery animation disable 예...
본문
<html>
<head>
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
jQuery.fx.off = true;
$("div").toggle("slow");
});
</script>
<style>
div {
position: absolute;
display: none;
}
</style>
</head>
<body>
<div>365ok.co.kr</div>
</body>
</html>
- 이전글jQuery animation queue 예... 15.06.12
- 다음글jQuery animation fade 예... 15.06.12