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

jq隨機(jī)色操作

Original 2019-03-18 16:47:27 280
abstrakt:<!DOCTYPE html><html><head><meta charset="UTF-8"><title>隨機(jī)色</title><script type="text/javascript" src="jquery-3.3.1.min.js"><

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>隨機(jī)色</title>

<script type="text/javascript" src="jquery-3.3.1.min.js"></script>

<style type="text/css">

ul,li{list-style: none}

ul{width:1000px;margin: 100px auto;}

li{width: 150px;float: left;}

a{display: block;width:100px;height: 100px;font-weight: bold;font-size: 18px;border-radius: 50px;line-height: 100px;text-align: center;}

</style>

</head>

<body>

<ul>

<li><a>1</a></li>

<li><a>2</a></li>

<li><a>3</a></li>

<li><a>4</a></li>

<li><a>5</a></li>

</ul>

</body>

<script type="text/javascript">

function bgc(tagName){

var name = document.getElementsByTagName(tagName);

for (var i = name.length - 1; i >= 0; i--) {

name[i].style.backgroundColor = 'rgb('+Math.floor(Math.random()*256)+','+Math.floor(Math.random()*256)+','+Math.floor(Math.random()*256)+')'

}

}


$(document).ready(function(){

bgc('a');


$('a').mouseover(function(){

$(this).css('border-radius','20px')

})


$('a').click(function(){

$(this).css('backgroundColor','rgb('+Math.floor(Math.random()*256)+','+Math.floor(Math.random()*256)+','+Math.floor(Math.random()*256)+')')

// $(this).style.backgroundColor = 'rgb('+Math.floor(Math.random()*256)+','+Math.floor(Math.random()*256)+','+Math.floor(Math.random()*256)+')'

})


$('a').mouseleave(function(event) {

$(this).css('border-radius','50px')

});


})

</script>

</html>


Korrigierender Lehrer:滅絕師太Korrekturzeit:2019-03-18 17:07:25
Zusammenfassung des Lehrers:完成的不錯(cuò),但是完成作業(yè)的時(shí)候要看清題目啊!點(diǎn)擊效果呢~

Versionshinweise

Beliebte Eintr?ge