728x90
300x250
SMALL
버튼을 클릭하면 랜덤하게 폰트 color, fontsize 변경하기
<script>
var $text=null;
jQuery(document).ready(function() {
init();
initEvent();
});
function init(){
$text=$(".text");
}
function initEvent(){
$("#btnColor").click(function(){
changeColor();
})
$("#btnSize").click(function(){
changeSize();
})
}
function changeColor(){
var color = "#" +(parseInt(Math.random()*0xffffff)).toString(16);
$text.css("color",color);
}
function changeSize(){
var fontSize =(10+parseInt(Math.random()*40))+"px";
$text.css("fontSize",fontSize);
}
</script>
<button id="btnColor">색상변경</button>
<button id="btnSize">크기변경</button>
<div class="text">글자 스타일 변경</div>
728x90
반응형
LIST
'javaScript > jQuery' 카테고리의 다른 글
이미지 여러 개 속성 값 변경 attr() (0) | 2023.02.19 |
---|---|
속성값 가져오기 attr, data 차이 (0) | 2023.02.18 |
클릭하면 패널박스 안에서 랜덤하게 움직이기 (0) | 2023.02.16 |
[jQuery] 클릭할때마다 토글 기능 적용 (0) | 2023.02.15 |
[jQuery]버튼을 클릭하면 width와 height 사이즈 변경 (0) | 2023.02.14 |
댓글