본문 바로가기
매일코딩/JQuery

JQuery hover&find&append&click&dblclick&focus 2

by 인생여희 2016. 12. 16.
반응형

구조는 거의 항상 다음과 같습니다:


$(document).ready(function() {

    $('thingToTouch').event(function() {


$('thingToAffect').effect();

    });

});




ex)


<!DOCTYPE html>

<html>

    <head>

    <title>Result</title>

        <link rel='stylesheet' type='text/css' href='stylesheet.css'/>

        <script type='text/javascript' src='script.js'></script>

</head>

<body>

        <form>

        MESSAGE: <input type="text" name="message" value="Type your text here!">

        </form>

        <button>Add!</button><br/>

        <div id="messages"></div>

</body>

</html>





$(document).ready(function() {

    $('button').click(function() {

    var toAdd = $("input[name=message]").val();

        $('#messages').append("<p>"+toAdd+"</p>");

    });

});







-------------


document가 .ready() 되는 순간 효과가 발생하는 코드



-- html 


<!DOCTYPE html>

<html>

<head>

<title>Kapow!</title>

        <link rel='stylesheet' type='text/css' href='stylesheet.css'/>

        <script type='text/javascript' src='script.js'></script>

</head>

<body>

        <div></div>   

</body>

</html>




-- js


$(document).ready(function(){

    

    $('div').fadeOut('fast',0.0)

}

    );

-----------------------------------------------------

이제 이벤트 핸들러를 가지고 뭔가 추가하는 법을 복습해 봅시다. 이번에는 .click()을 사용합니다.

클릭했을 때 사라지도록 해 보세요. 




-- html


<!DOCTYPE html>

<html>

<head>

<title>Kapow!</title>

        <link rel='stylesheet' type='text/css' href='stylesheet.css'/>

        <script type='text/javascript' src='script.js'></script>

</head>

<body>

        <div></div>   

</body>

</html>






-- js



$(document).ready(function(){

    

    

    $('div').click(function(){

        

        

    $('div').fadeOut('fast',0.0)


        

        });

    

});



-------------------------------------------------





$(document).ready(function(){

    

    

    $('div').click(function(){

        

        

    $('div').fadeOut('fast',0.0)



        });

    

     $('div').hover(

       

  

    function () {

    $('div').append($("<span> *+_+_+_+_+*</span>"));

    },

    

    function () {

    $(this).find("span:last").remove();

    


    });

 

    

});



------------------------------------------------------

-- click() 과 .hover()를 함께 사용하기


div 위를 .hover() (마우스 포인터를 올려놓기) 할 때, 'div' 에 'red' 클래스를 추가해야 합니다.




<!DOCTYPE html>

<html>

    <head>

<title>Kapow!</title>

        <link rel='stylesheet' type='text/css' href='stylesheet.css'/>

        <script type='text/javascript' src='script.js'></script>

</head>

<body>

        <div></div>   

</body>

</html>





$(document).ready(function(){

    

    

    $('div').click(function(){

        

        

    $('div').fadeOut('fast',0.0)

});

    

     $('div').hover(

       

function () {

$('div').addClass('red')

    

});

 

    


});



-------------------------------------------

-- .dblclick() 이벤트



-- html


<!DOCTYPE html>

<html>

    <head>

<title>Dubba Click</title>

        <link rel='stylesheet' type='text/css' href='stylesheet.css'/>

        <script type='text/javascript' src='script.js'></script>

</head>

<body>

        <div></div>   

</body>

</html>



-- js 



$(document).ready(function(){

    

    

    $('div').dblclick(function(){

        

        

         $('div').fadeOut('fast',0.0);        

        

        

        });

    



    });




--------------------------------------------------------


.mouseenter() 와 .mouseleave()


-- html


<!DOCTYPE html>

<html>

<head>

<title>Ghostly Divs</title>

        <link rel='stylesheet' type='text/css' href='stylesheet.css'/>

        <script type='text/javascript' src='script.js'></script>

</head>

<body>

        <div></div>   

</body>

</html>


-- css


div {

    height: 100px;

    width: 100px;

    border-radius: 5px;

    background-color: #ABCDEF;

    opacity: 0.25;

}




- js


$(document).ready(function(){

    

    

        $('div').mouseenter(function(){


                $('div').fadeTo('slow',1);


                });


               

             $('div').mouseleave(function(){


                $('div').fadeTo('slow',0.25);


                });

        

    });


------------------------------------------

  

.focus()



--html 

<!DOCTYPE html>

<html>

    <head>

<title>Time to Focus!</title>

<link rel='stylesheet' type='text/css' href='stylesheet.css'/>

<script type='text/javascript' src='script.js'></script>

</head>

<body>

<form>

Name: <input type='text' name='name'></input>

</form>

</body>

</html>


-- css


input {

    font-family: Verdana, Arial, Sans-Serif;

}



-- js


$(document).ready(function(){

    

    

    $('input').focus(function(){

        

        $(this).css('outline-color','#FF0000')

        

        

        });

    });

-- 

keydown 



$(document).ready(function(){

    

    

    $('div').keydown(function(){

        

        $('div').animate({left:'+=10px'},500);

        

        });

    });




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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
구조는 거의 항상 다음과 같습니다:
 
$(document).ready(function() {
    $('thingToTouch').event(function() {
 
    $('thingToAffect').effect();
    });
});
 
 
 
ex)
 
<!DOCTYPE html>
<html>
    <head>
        <title>Result</title>
        <link rel='stylesheet' type='text/css' href='stylesheet.css'/>
        <script type='text/javascript' src='script.js'></script>
    </head>
    <body>
        <form>
        MESSAGE: <input type="text" name="message" value="Type your text here!">
        </form>
        <button>Add!</button><br/>
        <div id="messages"></div>
    </body>
</html>
 
 
 
 
$(document).ready(function() {
    $('button').click(function() {
        var toAdd = $("input[name=message]").val();
        $('#messages').append("<p>"+toAdd+"</p>");
    });
});
 
 
 
 
 
 
-------------
 
document가 .ready() 되는 순간 효과가 발생하는 코드
 
 
-- html 
 
<!DOCTYPE html>
<html>
    <head>
        <title>Kapow!</title>
        <link rel='stylesheet' type='text/css' href='stylesheet.css'/>
        <script type='text/javascript' src='script.js'></script>
    </head>
    <body>
        <div></div>   
    </body>
</html>
 
 
 
-- js
 
$(document).ready(function(){
    
    $('div').fadeOut('fast',0.0)
}
    );
    
    
    
-----------------------------------------------------    
이제 이벤트 핸들러를 가지고 뭔가 추가하는 법을 복습해 봅시다. 이번에는 .click()을 사용합니다.
클릭했을 때 사라지도록 해 보세요. 
 
 
 
-- html
 
<!DOCTYPE html>
<html>
    <head>
        <title>Kapow!</title>
        <link rel='stylesheet' type='text/css' href='stylesheet.css'/>
        <script type='text/javascript' src='script.js'></script>
    </head>
    <body>
        <div></div>   
    </body>
</html>
 
 
 
 
 
-- js
 
 
$(document).ready(function(){
    
    
    $('div').click(function(){
        
        
    $('div').fadeOut('fast',0.0)
 
        
        });
    
});
 
 
-------------------------------------------------
 
 
 
 
$(document).ready(function(){
    
    
    $('div').click(function(){
        
        
    $('div').fadeOut('fast',0.0)
 
 
        });
    
    
    
     $('div').hover(
       
       
    function () {
    $('div').append($("<span> *+_+_+_+_+*</span>"));
    },
    
    function () {
    $(this).find("span:last").remove();
    
 
    });
 
    
});
 
 
------------------------------------------------------
-- click() 과 .hover()를 함께 사용하기
 
div 위를 .hover() (마우스 포인터를 올려놓기) 할 때, 'div' 에 'red' 클래스를 추가해야 합니다.
 
 
 
<!DOCTYPE html>
<html>
    <head>
        <title>Kapow!</title>
        <link rel='stylesheet' type='text/css' href='stylesheet.css'/>
        <script type='text/javascript' src='script.js'></script>
    </head>
    <body>
        <div></div>   
    </body>
</html>
 
 
 
 
$(document).ready(function(){
    
    
    $('div').click(function(){
        
        
    $('div').fadeOut('fast',0.0)
                            
                            });
    
     $('div').hover(
       
            function () {
            $('div').addClass('red')
    
                    });
 
    
 
});
 
 
-------------------------------------------
-- .dblclick() 이벤트
 
 
-- html
 
<!DOCTYPE html>
<html>
    <head>
        <title>Dubba Click</title>
        <link rel='stylesheet' type='text/css' href='stylesheet.css'/>
        <script type='text/javascript' src='script.js'></script>
    </head>
    <body>
        <div></div>   
    </body>
</html>
 
 
-- js 
 
 
$(document).ready(function(){
    
    
    $('div').dblclick(function(){
        
        
         $('div').fadeOut('fast',0.0);        
        
        
        });
    
 
 
    });
 
 
 
--------------------------------------------------------
 
.mouseenter() 와 .mouseleave()
 
-- html
 
<!DOCTYPE html>
<html>
    <head>
        <title>Ghostly Divs</title>
        <link rel='stylesheet' type='text/css' href='stylesheet.css'/>
        <script type='text/javascript' src='script.js'></script>
    </head>
    <body>
        <div></div>   
    </body>
</html>
 
-- css
 
div {
    height: 100px;
    width: 100px;
    border-radius: 5px;
    background-color: #ABCDEF;
    opacity: 0.25;
}
 
 
 
- js
 
$(document).ready(function(){
    
    
        $('div').mouseenter(function(){
 
                $('div').fadeTo('slow',1);
 
                });
 
               
             $('div').mouseleave(function(){
 
                $('div').fadeTo('slow',0.25);
 
                });
        
    });
 
    
    
------------------------------------------
  
.focus()
 
 
--html 
<!DOCTYPE html>
<html>
    <head>
        <title>Time to Focus!</title>
        <link rel='stylesheet' type='text/css' href='stylesheet.css'/>
        <script type='text/javascript' src='script.js'></script>
    </head>
    <body>
        <form>
            Name: <input type='text' name='name'></input>
        </form>
    </body>
</html>
 
-- css
 
input {
    font-family: Verdana, Arial, Sans-Serif;
}
 
 
-- js
 
$(document).ready(function(){
    
    
    $('input').focus(function(){
        
        $(this).css('outline-color','#FF0000')
        
        
        });
    });
    
    
    
-- 
    
keydown 
 
 
$(document).ready(function(){
    
    
    $('div').keydown(function(){
        
        $('div').animate({left:'+=10px'},500);
        
        });
    
    
    
    });    
cs


반응형

댓글