1 Star 0 Fork 0

欧尼斯/CSS效果小练习

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 848 Bytes
一键复制 编辑 原始数据 按行查看 历史
欧尼斯 提交于 2020-12-08 13:55 . 轻拟物
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Demo</title>
<link rel="stylesheet" href="styles/css/page.css">
</head>
<body>
<div class="page">
<nav>
<a href="loading.html">加载动画</a>
<a href="carousel.html">Steps 轮播图</a>
<a href="arrow.html">箭头</a>
<a href="shadow.html">轻拟物</a>
</nav>
<main>
<iframe src="loading.html" frameborder="0"></iframe>
</main>
</div>
<script>
let navButtons = document.querySelectorAll('.page nav a'),
frame = window.frames
navButtons.forEach((item) => {
item.addEventListener('click', function (e) {
e.preventDefault();
frame[0].location.href = this.href
})
})
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
CSS
1
https://gitee.com/honest719/css-effect-exercise.git
git@gitee.com:honest719/css-effect-exercise.git
honest719
css-effect-exercise
CSS效果小练习
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385