jQuery

미니멀리즘·2022년 11월 29일

jQuery cdn
https://releases.jquery.com/

온라인 라이브러리 복사해서
html에 붙여 넣기


같은의미
$(document).ready(function(){
    $("#red-box").fadeOut(2000);
});

$(function(){
    $(".red-box").fadeOut(2000);
});

("selector").action()("selector").action()(this).hide()

hide show와 차이점
fadeTO("속도"opacity)
투명도 0~1 조절 가능함

$(selector).hide(speed, callback);

Chaining구현
$(selector).action().action().action()

profile
웹 개발자

0개의 댓글