#.문서 객체 모델 (DOM)
HTML 문서는 DOM(문서 객체 모델)을 통해 구성되어있습니다.
바로 이 DOM이 jQuery와 상호작용하며 HTML을 수정 가능할 수 있도록 합니다.
#.jQuery의 구문
function(){
jQuery magic;
}
$(document).ready(function() {
jQuery 문장;
});
-----------------
<!DOCTYPE html>
<html>
<head>
<title>Ta Daaa!</title>
<link rel='stylesheet' type='text/css' href='stylesheet.css'/>
<script type='text/javascript' src='script.js'></script>
</head>
<body>
<div><br/><strong>Hello world!</strong></div>
</body>
</html>
css
div {
position: absolute;
margin: -10px 0 0 -8px;
height: 60px;
width: 100%;
background-color: #008800;
color: #FFFFFF;
font-family: Verdana, Arial, Sans-Serif;
display:none;
}
js
$(document).ready(function() {
$("div").slideDown('slow')
});
function()의 사이 {}에서 div를 jQuery 객체로 전환시킴으로 jQuery가 다룰수 있게 바꿉니다.
$(document)에 .ready()를 쓰는것과 같이 .slideDown()의 함수를 jQuery 객체 div에 쓰면 됩니다.
---------------------------------------------------------
fadeTo()는 두개의 인자(Argument) 또는 입력값을 갖고 괄호 사이와 쉼표로 나눠져있으며:
흐려지는 속도와 투명도 (또는 투명함)이 흐려지게끔 합니다.
-- hide();
--html
<!DOCTYPE>
<html>
</head>
<title>Ta Daaa!</title>
<link rel='stylesheet' type='text/css' href='stylesheet.css'/>
<script type = 'text/javascript' src='script.js'></script>
</head>
<body>
<div>wow</div>
</body>
</html>
-- css
div {
heigth:60px;
width: 70px;
color: black;
background-color: red;
}
-- js
$(document).ready(function(){
$('div').mouseenter(function(){
$('div').fadeTo('slow',0.0);
}
);
}
);
-----------------------------------------------
마우스를 올리면 사라지고 때면 나타나는 이벤트
$(document).ready(function(){
$('div').mouseenter(function(){
$('div').fadeTo('slow',0.1);
});
$('div').mouseleave(function(){
$('div').fadeTo('slow',1);
});
});
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 | #.문서 객체 모델 (DOM) HTML 문서는 DOM(문서 객체 모델)을 통해 구성되어있습니다. 바로 이 DOM이 jQuery와 상호작용하며 HTML을 수정 가능할 수 있도록 합니다. #.jQuery의 구문 function(){ jQuery magic; } $(document).ready(function() { jQuery 문장; }); ----------------- <!DOCTYPE html> <html> <head> <title>Ta Daaa!</title> <link rel='stylesheet' type='text/css' href='stylesheet.css'/> <script type='text/javascript' src='script.js'></script> </head> <body> <div><br/><strong>Hello world!</strong></div> </body> </html> css div { position: absolute; margin: -10px 0 0 -8px; height: 60px; width: 100%; background-color: #008800; color: #FFFFFF; font-family: Verdana, Arial, Sans-Serif; display:none; } js $(document).ready(function() { $("div").slideDown('slow') }); function()의 사이 {}에서 div를 jQuery 객체로 전환시킴으로 jQuery가 다룰수 있게 바꿉니다. $(document)에 .ready()를 쓰는것과 같이 .slideDown()의 함수를 jQuery 객체 div에 쓰면 됩니다. --------------------------------------------------------- fadeTo()는 두개의 인자(Argument) 또는 입력값을 갖고 괄호 사이와 쉼표로 나눠져있으며: 흐려지는 속도와 투명도 (또는 투명함)이 흐려지게끔 합니다. -- hide(); --html <!DOCTYPE> <html> </head> <title>Ta Daaa!</title> <link rel='stylesheet' type='text/css' href='stylesheet.css'/> <script type = 'text/javascript' src='script.js'></script> </head> <body> <div>wow</div> </body> </html> -- css div { heigth:60px; width: 70px; color: black; background-color: red; } -- js $(document).ready(function(){ $('div').mouseenter(function(){ $('div').fadeTo('slow',0.0); } ); } ); ----------------------------------------------- $(document).ready(function(){ $('div').mouseenter(function(){ $('div').fadeTo('slow',0.1); }); $('div').mouseleave(function(){ $('div').fadeTo('slow',1); }); }); | cs |
'매일코딩 > JQuery' 카테고리의 다른 글
제이쿼리 기초 2 append prepend after before remove empty addClass (2) | 2016.12.27 |
---|---|
제이쿼리 기초1 mouseover text focus css blur show hide toggle animate fadeOut slideUp (4) | 2016.12.26 |
JQuery hover&find&append&click&dblclick&focus 2 (4) | 2016.12.16 |
댓글