Header Ads Widget

Responsive Advertisement

[javascript] mouse over, out 기능 hover

$('div').hover(
 function () {
  $(this).css({"background-color":"red"});
 }, 
 function () {
  $(this).css({"background-color":"blue"});
 }
);

댓글 쓰기

0 댓글