html星星点灯

一、实验题目

用html实现星星点灯效果

二、实验代码

复制代码
<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<style>
			* {
				margin: 0%;
				padding: 0%;
			}
		</style>
	</head>
	<body>
		<script>
			document.body.style.backgroundColor = "#000"

			document.onclick = function(event) {
				let img = document.createElement("img")
				img.src = "../pic/0.gif"
				img.style.position = "absolute"
				document.body.appendChild(img)
				img.onload = function() {
					const img_w = parseInt(getComputedStyle(img).width)
					const img_h = parseInt(getComputedStyle(img).height)
					w = getRandom(50, 200)
					h = img_h / img_w * w
					img.style.width = w + "px"
					img.style.height = h + "px"
					img.style.left = (event.pageX - w / 2) + "px"
					img.style.top = (event.pageY - h / 2) + "px"
				}
			}

			function getRandom(min, max) {
				return min + Math.ceil((max - min) * Math.random())
			}
		</script>
	</body>
</html>

三、实验效果

相关推荐
flytam9 分钟前
Claude Agent SDK 深度入门指南
前端·aigc·agent
weixin1997010801624 分钟前
《电天下商品详情页前端性能优化实战》
前端·性能优化
速易达网络25 分钟前
vue+echarts开发的图书数字大屏系统
前端
小智社群33 分钟前
贝壳获取小区的名称
开发语言·前端·javascript
Ferries1 小时前
《从前端到 Agent》系列|03:应用层-RAG(检索增强生成,Retrieval-Augmented Generation)
前端·人工智能·机器学习
Jessica_Lee1 小时前
Openclaw智能体终止机制
javascript
米丘1 小时前
Connect 深度解析:Node.js 中间件框架的基石
javascript·http·node.js
饺子不吃醋1 小时前
执行上下文:变量提升、作用域与 this 底层机制
javascript
菲利普马洛1 小时前
记一次主题闪烁问题
前端·css·react.js
谁在黄金彼岸1 小时前
nvm for windows之死:别再被这个“过时工具”耽误开发
前端