제이쿼리
제이쿼리 js폴더에 넣기
<script src =" js/jquery-0.0.0.js"></script>
<script src =" js/main.js"></script>
$(function(){
//전체 자바스크립스
});
--------------선택자
$(function(){
//$('header')
//$('#css')
// $('.show')
$('header').css('border', 'solid 10px red');
$('#masthead-id').css("color", "red");
$('.masthead-heading").css("color","blud");
var masthead = $('#masthead-id');
$('header #masthead-id.masthead-subheading').css("color","red");
---------------------이벤트
$('header #masthead-id').**mouseenter**(function(){
$('header #masthead-id').css('backgorund-color','yellow');
})
$('header #masthead-id').**mouseleace**(function(){
$('header #masthead-id').css('backgorund-color','yellow');
})
$('header #masthead-id').**click**(function(){
$('header #masthead-id').css('backgorund-color','pink');
})
$('**header #masthead-id**').click(function(){
$(**this**).css('backgorund-color','pink');
})
$('header #masthead-id').**on**(function(){
mouseenter : function() {
$(this).css("background-color","yellow");
},
mouseleace : function() {
$(this).css("background-color","blue");
},
click : function() {
$(this).css("background-color","pink");
},
})
$('header #masthead-id').**on**(function(){
mouseenter : function() {
$(this).**fadeTo**"fast",1); //투명도
},
mouseleace : function() {
$(this).fadeTo"fast",0.5);
},
})
$("#masthead-id").click(function(){
$(".masthead-heading").**hide**();
});
$("#masthead-id").click(function(){
$(".masthead-heading").**show**();
});
$("#masthead-id").click(function(){
$(".masthead-heading").**toggle**();
});
$("#masthead-id").click(function(){
$(".masthead-heading").**slideDown**();
});
$("#masthead-id").click(function(){
$(".masthead-heading").**slidetoggle**();
});
});
$("#masthead-id").click(function(){
$(".masthead-heading").**fadeOut**();
});
$("#masthead-id").click(function(){
$(".masthead-heading").**fadeIn**();
});
$("#masthead-id").click(function(){
$(".masthead-heading").**addClass**('blue');
});
$("#masthead-id").click(function(){
$(".masthead-heading").**removeClass**('important');
});
});
Author And Source
이 문제에 관하여(제이쿼리), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@posvj001/제이쿼리저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)