jQuery---애니메이션
4531 단어 jQuery
아래 화살표의 예에서 #box의 left 속성 값은 1000밀리초(1초) 500픽셀입니다.
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<title>jQuery-test</title>
<style type="text/css">
#box {
position: relative;
left: 0px;
width: 100px;
height: 100px;
background: red;
}
</style>
</head>
<body>
<div id="box"></div>
<script type="text/javascript">
$(function() {
$('#box').animate({ left: '500px'}, 1000);
});
</script>
</html>
또한 페이드, 페이드, 다운, 슬라이딩 등 자주 사용하는 애니메이션은 각각 페이드 인, 페이드 아웃, 슬라이드 다운, 슬라이드 업 등 단축키를 준비했다.
다음은fadeOut의 예↓
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<title>jQuery-test</title>
<style type="text/css">
#box {
position: relative;
left: 0px;
width: 100px;
height: 100px;
background: red;
}
</style>
</head>
<body>
<div id="box"></div>
<script type="text/javascript">
$(function() {
$('#box').fadeOut();
});
</script>
</html>
아래에 페이드 인 및 드롭다운 애니메이션 이미지↓
Reference
이 문제에 관하여(jQuery---애니메이션), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/tsukishimaao/items/1998f775bfb5224f6c6c텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)