亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

JQuery點擊按鈕隨機變色

Original 2019-01-22 21:09:51 407
abstract:<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><script src="https://code.jquery.com/jquery-3.3.1.min.js"></script><titl

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>

<title>Document</title>

<style type="text/css">

.box{

width: 500px;

height: 500px;

position: absolute;

left: 0;

right: 0;

top: 0;

bottom: 0;

margin: auto;

}

        a{

font-size: 2rem;

color: aliceblue;

background-color: lightblue;

display:block;

width: 300px;

height:300px;

            line-height: 300px;

            text-align: center;

border-radius: 50%;

text-decoration: none;

margin: 20px auto;

margin-bottom: 100px;

        }

button{

display:block;

margin: 20px auto;

border: none;

border-radius: 25px;

width:100px;

height: 40px;

}

</style>

<script>

$(document).ready(function () {

var number = 0;


$("button").hover(function () {

// over

var rg;

rgb = $("a").css("backgroundColor")

$(this).css("box-shadow", "0 0 10px " +rgb);

}, function () {

// out

$(this).css("box-shadow", "none");

}

);


$("button").click(function (e) {

var r,g,b;

r = Math.floor(Math.random()*256);

g = Math.floor(Math.random()*256);

b = Math.floor(Math.random()*256);

number++;

$("a").css({"backgroundColor":"rgb("+r+","+g+","+b+")"});

$("span").html(r+" , "+g+" , "+b);

});

});

</script>

</head>

<body>

<div class="box">

<a class="">

<span>0</span>

</a>

<button>點擊變色</button>

</div>

</body>

</html>


Correcting teacher:滅絕師太Correction time:2019-01-23 09:11:36
Teacher's summary:提交代碼記得選擇一下語言哦,這樣看體驗效果不好

Release Notes

Popular Entries