jQuery 의 animate 애니메이션 방법 및 애니메이션 줄 서기 문제 해결
•매개 변수 2:선택 할 수 있 습 니 다.애니메이션 의 속 도 를 규정 합 니 다.기본 값 은"normal"입 니 다.기타 값,"slow","normal","fast",디지털 형식,단 위 는 밀리초 입 니 다.
•매개 변수 3:선택 할 수 있 습 니 다.서로 다른 애니메이션 점 에서 애니메이션 속 도 를 설정 하 는 easing 함수 입 니 다.값 은 swing(변속)과 linear(등 속)를 포함 합 니 다.
•매개 변수 4:선택 할 수 있 습 니 다.animate 함수 가 실 행 된 후 실행 할 반전 함수 입 니 다.
•주의:
① 모든 수치 가 있 는 속성 치 는 운동 할 수 있다.
② 다른 운동 방법,예 를 들 어 slideUp()등 도 매개 변수 3 과 매개 변수 4 가 있다.
<style>
*{
margin: 0;
padding: 0;
}
p{
position: relative;
left: 0;
margin-bottom: 10px;
background-color: skyblue;
width: 50px;
height: 50px;
}
</style>
<!--------------------------------------->
<body>
<p>1</p>
<p>2</p>
<p>3</p>
<p>4</p>
<p>5</p>
<p>6</p>
<p>7</p>
<p>8</p>
<script src="../jq/jquery-1.12.4.min.js"></script>
<script>
var $ps = $("p");
// ,
var during = 1000;
//
$ps.click(function(){
$(this).animate({"width":500,"opacity":0.5},during,"swing")
})
</script>
</body>
애니메이션 정렬
<style>
div{
width: 100px;
height: 100px;
border: 8px solid #ccc;
position: absolute;
left: 0;
top: 0;
background: url(../../imgs/1.jpg) no-repeat center center;
}
.box2{
border-radius: 50%;
overflow: hidden;
}
div span{
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(221, 130, 130, 0.4);
}
</style>
<!-------------css ------------------->
<body>
<div class="box1"><span></span></div>
<div class="box2"><span></span></div>
<script src="../jq/jquery-1.12.4.min.js"></script>
<script>
var $box1 = $(".box1");
var $box2 = $(".box2");
var during = 2000;
//
$box2.animate({"left": 400,"top":400},during)
//box1、box2
//
$box1.animate({"left": 400},during)//
$box1.animate({"top": 400}, during)
// ,
// , ,
//$box1.css("height",200)
</script>
</body>
// , ,
$box2.mouseenter(function(){
$(this).children().slideUp(during)
})
$box2.mouseleave(function(){
$(this).children().slideDown(during)
})
// , box2 span ,
// ,
//
$box1.children().fadeOut(500).fadeIn(500).fadeOut(500).fadeIn(500).fadeOut(500).fadeIn(500)
delay()지연 방법
//
$box1.children().delay(3000).fadeOut(500).fadeIn(500).fadeOut(500).fadeIn(500).fadeOut(500).fadeIn(500)
stop()애니메이션 정지 방법•매개 변수 1:뒤에 있 는 애니메이션 줄 을 비 울 지 여 부 를 설정 합 니 다.true 가 비 울 지 여 부 를 표시 하면(뒤에 있 는 애니메이션 도 같이 제거 되 고 실행 하지 않 습 니 다)false 가 비 울 지 않 으 면 현재 애니메이션 만 중단 합 니 다(뒤의 애니메이션 은 즉시 실행 합 니 다).
•매개 변수 2:현재 애니메이션 이 즉시 완 료 될 지 여 부 를 설정 합 니 다.true 가 즉시 완 료 를 표시 하면 대상 은 바로 끝 위치 로 갑 니 다.false 가 현재 애니메이션 을 완성 하지 않 으 면 현재 위치 에서 중단 합 니 다.
<style>
div {
width: 100px;
height: 100px;
border: 8px solid #ccc;
position: absolute;
left: 0;
top: 40;
background: url(../../imgs/1.jpg) no-repeat center center;
}
div span {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(221, 130, 130, 0.4);
}
</style>
</head>
<body>
<input type="button" value="true true" id="btn1">
<input type="button" value="true false" id="btn2">
<input type="button" value="false false" id="btn3">
<input type="button" value="false true" id="btn4"><br>
<div class="box1"><span></span></div>
<script src="../jq/jquery-1.12.4.min.js"></script>
<script>
var $box1 = $(".box1");
var during = 2000;
//
$box1.animate({ "left": 400 }, during)
$box1.animate({ "top": 400 }, during)
$box1.animate({"left":0},during)
$box1.animate({"top":40},during)
//
//
var $btn1 = $("#btn1")
var $btn2 = $("#btn2")
var $btn3 = $("#btn3")
var $btn4 = $("#btn4")
//true true ,
$btn1.click(function () {
$box1.stop(true, true);
})
//true false
$btn2.click(function () {
$box1.stop(true, false);
})
//false false ,
//
$btn3.click(function () {
$box1.stop(false, false);
})
//false true ,
$btn4.click(function () {
$box1.stop(false, true);
})
</script>
</body>
질문
모든 운동 함수 전에 stop(true)을 추가 합 니 다.운동 이 실행 되 기 전에 앞 에 줄 을 서 있 는 애니메이션 을 비 운 다음 현재 위치 에서 멈 추 는 것 을 의미 합 니 다.
<style>
div {
width: 100px;
height: 100px;
border: 8px solid #ccc;
position: absolute;
left: 0;
top: 0;
background: url(../../imgs/1.jpg) no-repeat center center;
}
div span {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(221, 130, 130, 0.4);
}
</style>
<body>
<input type="button" value="true true" id="btn1">
<input type="button" value="true false" id="btn2">
<input type="button" value="false false" id="btn3">
<input type="button" value="false true" id="btn4"><br>
<div class="box1"><span></span></div>
<script src="../jq/jquery-1.12.4.min.js"></script>
<script>
var $box1 = $(".box1");
var during = 2000;
//
$box1.mouseenter(function(){
$(this).children().stop(true).slideUp(during)
})
$box1.mouseleave(function(){
$(this).children().stop(true).slideDown(during)
})
</script>
</body>
방법 2:함수 절 류 를 이용 한 방법요소 가 움 직 이 고 있다 면,바로 return 입 니 다.뒤의 운동 코드 를 실행 하지 마 십시오.
모든 jQuery 대상 은 is()방법 을 호출 할 수 있 습 니 다.역할 은 요소 대상 의 특정한 상 태 를 표시 하 는 것 입 니 다.
매개 변수 위치 가 is(":animated")라면 animated 는 운동 을 하고 있다 는 뜻 이 고,반환 값 은 불 값 이 며,true 는 운동 을 하고 있다 는 뜻 이 며,false 는 운동 이 없다 는 뜻 이다.
//
$box1.mouseenter(function(){
if(is(":animated")){
// , return ,
return;
}
// ,
$(this).children().slideup(during);
})
$box1.mouseenter(function(){
if(is(":animated")){
// , return ,
return;
}
// ,
// , stop(true)
$(this).children().stop(true).slideup(during);
})
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Ajax 이용시 로컬 파일이 CORS 에러가 되었을 때의 대응초보의 초보로 입문편의 참고서를 보면서 공부하고 있어, Ajax에서 로컬 파일을 호출하려고했지만 CORS 정책 오류로 인해 실패했습니다. 브라우저에서 로컬 파일(html)을 표시한 것뿐. 사용 브라우저는 chrome...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.