π 곡λΆνλ μ§μ§μνμΉ΄λ μ²μμ΄μ§?
jQuery_mouse event_λ§νμ μΆλ ₯ λ³Έλ¬Έ
jQuery_mouse event_λ§νμ μΆλ ₯
μ§μ§μνμΉ΄ 2022. 8. 12. 15:53220812 μμ±
<λ³Έ λΈλ‘κ·Έλ carina16λμ λΈλ‘κ·Έλ₯Ό μ°Έκ³ ν΄μ 곡λΆνλ©° μμ±νμμ΅λλ€>
https://carina16.tistory.com/105
[jquery] jquery μ΄λ²€νΈ λ±λ‘ λ©μλ3 (mouse)
mouseover() / mouseout() / hover() mouseover() λ μ νν μμμ λ§μ°μ€ ν¬μΈν°λ₯Ό μ¬λ¦΄ λ λ§λ€ μ΄λ²€νΈλ₯Ό λ°μμν΅λλ€. mouseout() λ μ νν μμμμ λ§μ°μ€ ν¬μΈν°κ° λ²μ΄λ λλ§λ€ μ΄λ²€νΈλ₯Ό λ°μμν΅λ
carina16.tistory.com
1. λ§μ°μ€ event
- mouseover() : λ§μ°μ€κ° ν¬μ»€μ€ μμΌλ‘ λ€μ΄μμ λ μ΄λ²€νΈκ° λ°μλλ ν¨μ
1. mouseover μ΄λ²€νΈ λ±λ‘
$("μ΄λ²€νΈ λμ μ ν").mouseover(function() {μλ°μ€ν¬λ¦½νΈ μ½λ;});
$("μ΄λ²€νΈ λμ μ ν").on("mouseover",function(){μλ°μ€ν¬λ¦½νΈ μ½λ;});
2. mouseover μ΄λ²€νΈ κ°μ λ°μ
$("μ΄λ²€νΈ λμ μ ν").mouseover();
- mouseout() : λ§μ°μ€κ° ν¬μ»€μ€ λ°μΌλ‘ λκ°μ λ μ΄λ²€νΈκ° λ°μλλ ν¨μ
1. mouseout μ΄λ²€νΈ λ±λ‘
$("μ΄λ²€νΈ λμ μ ν").mouseout(function() {μλ°μ€ν¬λ¦½νΈ μ½λ;});
$("μ΄λ²€νΈ λμ μ ν").on("mouseout",function() {μλ°μ€ν¬λ¦½νΈ μ½λ;});
2.mouseout μ΄λ²€νΈ κ°μ λ°μ
$("μ΄λ²€νΈ λμ μ ν").mouseout();
- hover() : μ νν μμμ λ§μ°μ€ ν¬μΈν°κ° μ¬λΌκ° λμ μ νμμμμ λ²μ΄λ λ κ°κ° μ΄λ²€νΈλ₯Ό λ°μ
hover - μ΄λ²€νΈ λ±λ‘
$("μ΄λ²€νΈ λμ μ ν").hover(
function() {λ§μ°μ€ μ€λ² μ μ€νλ μ½λ},
function() {λ§μ°μ€ μμ μ μ€νλ μ½λ}
);
2. κ° λ³κ²½
$("#tooltip").attr("title", "κ° λ³κ²½");
'π©βπ» μ»΄ν¨ν° ꡬ쑰 > etc' μΉ΄ν κ³ λ¦¬μ λ€λ₯Έ κΈ
windows Ubuntu(Linux)μ VSCode μ°λνκΈ° (0) | 2022.09.02 |
---|---|
windowsμ Ubuntu(Linux) μ€μΉνκΈ° with WLS2 (0) | 2022.09.01 |
[λ΄κ° λ³Ό μ μ©ν λͺ¨μ] VS Code (0) | 2022.01.29 |
[λ΄κ° λ³Ό μ μ©ν λͺ¨μ] λͺ λ Ήμ΄ (0) | 2022.01.29 |
[λ΄κ° λ³Ό μ μ©ν λͺ¨μ] μ»΄νμΌ μ΅μ (0) | 2022.01.29 |