Blogger Information
Blog 28
fans 0
comment 0
visits 14099
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
第一天作业
泰礴松的博客
Original
532 people have browsed it

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>我的第一堂课</title>

<style type="text/css">

div{

width: 300px;

height: 200px;

background-image: url(img/2.jpg);

background-size: 300px 200px;

background-repeat: no-repeat;

border-radius: 15px;

box-shadow: 8px 8px 8px #888;

text-align: center;

}

</style>

</head>

<body>

<div>

<h3 style="color:brown;text-align:center;font-size:20px;"

onmouseover ="change(this)" onmouseout="old(this)">咏鹅</h3>

<p>鹅,鹅,鹅,曲项向天歌。</p>

<p>白毛浮绿水,红掌拨清波。</p>

</div>

<script type="text/javascript">

function change(element){

element.style.fontSize = "28px"

element.style.color = "blue"

}

function old(element){

element.style.fontSize = "18px"

element.style.color = "red"


}

</script>

</body>

</html>


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!