大气磅礴的网页背景滑动效果,效果真的很棒,特别适合宽屏的网页,效果很震撼。 效果如下: 主要代码如下:
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title> - Yet another slider</title>
<link rel='stylesheet' href='https://fonts.googleapis.com/css2?family=Sen&display=swap'>
<link rel="stylesheet" href="./style/style.css">
</head>
<body>
<div id="main">
<h1>something</h1>
<div class="content">
<p>You can press <kbd>▲</kbd> <kbd>▼</kbd> on your keyboard or swipe up/down to navigate. Mouse wheel works too.</p>
</div>
<div class="buttons">
<button class="next" onclick="go(-1)"></button>
<button class="prev" onclick="go(1)"></button>
</div>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/gsap/3.2.6/gsap.min.js'></script>
<script src="./style/script.js"></script>
</body>
</html>
下载源码
|