1 Star 1 Fork 0

ZQY233/原生练习

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
背景图鼠标滚动视差.html 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
ZQY233 提交于 2021-10-11 16:40 . 2021-10-11
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
html,
body {
height: 100%;
position: relative;
overflow: hidden;
margin: 0;
padding: 0;
}
.background-image {
width: 110%;
height: 110%;
position: absolute;
left: 0;
top: 0;
background:
url('https://cn.bing.com/th?id=OHR.MauricieAutumn_ZH-CN3300167870_768x1366.jpg&rf=LaDigue_1920x1080.jpg') no-repeat center center / cover;
}
</style>
</head>
<body>
<div class="background-image"></div>
</body>
<script>
const bg = document.querySelector('.background-image')
const windowWidth = window.innerWidth / 5
const windowHeight = window.innerHeight / 5
bg.onmousemove = (e) => {
const mouseX = e.clientX / windowWidth
const mouseY = e.clientY / windowHeight
bg.style.transform = 'translate3d(-' + mouseX + '%, -' + mouseY + '%, 0)'
}
</script>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zqylzcwcxy/native-practice.git
[email protected]:zqylzcwcxy/native-practice.git
zqylzcwcxy
native-practice
原生练习
master

搜索帮助