博客列表 >php中文网第一课

php中文网第一课

有点凉了
有点凉了原创
2018年03月16日 12:08:42643浏览
<!DOCTYPE html>
<html>
<head>
	<meta charset="UTF-8">
	<title></title>
	<style type="text/css">
	div{
		width: 400px;
		height: 400px;
		background: url(https://img.mukewang.com/58ec5443000171ca06000338-240-135.jpg) no-repeat ;
		border-radius: 30px;
		background-size:100% 100%;
	}
	h3{
		text-align: center;
	}
	#text{
		text-indent: 1cm;
		text-align: center;
	}
	.text{
		text-indent: 1cm;
		text-align: center;
	}
	</style>

</head>
<body>
	<div>
		<h3 style="color: green"  onmousemove="move(this)">相思</h3>
		<p id="text" style="color: red" onmousemove="over(this)" onmouseout="out(this)">红豆生南国,<em> 春来发几枝。</em></p>
		<p class="text">愿君多采撷,<strong>此物</strong>最相思。</p>
	</div>
</body>
<script type="text/javascript">
		function move(elment) {
			// body...
			confirm("鼠标经过了");
		}
		function over(elment) {
			// body...
			elment.style.color='green';
		}
		function out(elment) {
			// body...
			elment.style.color='red';
		}
	</script>
</html>

1111.png

2222.JPG

3333.png

上一条:3.15作业下一条:3.15作业
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议