분류 jQuery

jQuery animation disable 예...

컨텐츠 정보

  • 조회 2,599 (작성일 )

본문

<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>