210404 JavaScript jQuery Width-Height 연습_1
11774 단어 자바스크립트jqueryJavaScript제이쿼리JavaScript
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
div {
background-color: powderblue;
margin: 50px auto;
}
.box1{width: 100px; height: 200px;}
.box2{width: 500px; height: 200px;}
.box3{width: 300px; height: 700px;}
.box4{width: 400px; height: 300px;}
.box5{width: 190px; height: 800px;}
</style>
</head>
<boby>
<div class="box1"></div>
<div class="box2"></div>
<div class="box3"></div>
<div class="box4"></div>
<div class="box5"></div>
<script src="js/jquery-3.6.0.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script>
/*
$(sel).width(); //해당 선택자의 width 값을 가져옴
$(sel).width(num); //너비값 반영
$(sel).height(); //해당 선택자의 height 값을 가져옴
$(sel).height(num); //너비값 반영
is()메서드는 선택자의 상태를 묻는 메서드
var a = $(this).is(":animated");
if(a === false)
*/
$("div").on("click", function(){
var w = $(this).width();
var h = $(this).width();
$(this).stop().animate({
"width" : h,
"height" : w
});
});
</script>
</boby>
</html>
Author And Source
이 문제에 관하여(210404 JavaScript jQuery Width-Height 연습_1), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@itisit210/210404-JavaScript-jQuery-Width-Height-연습1저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)