Toggle navigation
在线编辑器
在线代码
文本比较
jQuery下载
前端库
在线手册
登录/注册
下载代码
html
css
js
分享到微信朋友圈
X
html
css
body { background-color: rgb(10, 10, 10); height: 100vh; margin: 0px; overflow: hidden; } #gallery { height: 140vmax; width: 140vmax; position: absolute; } .tile { border-radius: 1vmax; position: absolute; transition: transform 800ms ease; } .tile:hover { transform: scale(1.1); } .tile:hover > img { opacity: 1; transform: scale(1.01); } .tile > img { height: 100%; width: 100%; object-fit: cover; border-radius: inherit; opacity: 0; transition: opacity 800ms ease, transform 800ms ease; } .tile:nth-child(1) { background-color: rgb(255, 238, 88); height: 14%; width: 20%; left: 5%; top: 5%; } .tile:nth-child(2) { background-color: rgb(66, 165, 245); height: 24%; width: 14%; left: 42%; top: 12%; } .tile:nth-child(3) { background-color: rgb(239, 83, 80); height: 18%; width: 16%; left: 12%; top: 34%; } .tile:nth-child(4) { background-color: rgb(102, 187, 106); height: 14%; width: 12%; left: 45%; top: 48%; } .tile:nth-child(5) { background-color: rgb(171, 71, 188); height: 16%; width: 32%; left: 8%; top: 70%; } .tile:nth-child(6) { background-color: rgb(255, 167, 38); height: 24%; width: 24%; left: 68%; top: 8%; } .tile:nth-child(7) { background-color: rgb(63, 81, 181); height: 16%; width: 20%; left: 50%; top: 74%; } .tile:nth-child(8) { background-color: rgb(141, 110, 99); height: 24%; width: 18%; left: 72%; top: 42%; } .tile:nth-child(9) { background-color: rgb(250, 250, 250); height: 10%; width: 8%; left: 84%; top: 84%; } /* -- YouTube Link Styles -- */ body.menu-toggled > .meta-link > span { color: rgb(30, 30, 30); } #source-link { bottom: 60px; } #source-link > i { color: rgb(94, 106, 210); } #yt-link > i { color: rgb(239, 83, 80); } .meta-link { align-items: center; backdrop-filter: blur(3px); background-color: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 6px; bottom: 10px; box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1); cursor: pointer; display: inline-flex; gap: 5px; left: 10px; padding: 10px 20px; position: fixed; text-decoration: none; transition: background-color 400ms, border-color 400ms; z-index: 10000; } .meta-link:hover { background-color: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); } .meta-link > i, .meta-link > span { height: 20px; line-height: 20px; } .meta-link > span { color: white; font-family: "Rubik", sans-serif; font-weight: 500; }
JavaScript
const gallery = document.getElementById("gallery"); window.onmousemove = e => { const mouseX = e.clientX, mouseY = e.clientY; const xDecimal = mouseX / window.innerWidth, yDecimal = mouseY / window.innerHeight; const maxX = gallery.offsetWidth - window.innerWidth, maxY = gallery.offsetHeight - window.innerHeight; const panX = maxX * xDecimal * -1, panY = maxY * yDecimal * -1; gallery.animate({ transform: `translate(${panX}px, ${panY}px)` }, { duration: 4000, fill: "forwards", easing: "ease" }) }
粒子
时间
文字
hover
canvas
3d
游戏
音乐
火焰
水波
轮播图
鼠标跟随
动画
css
加载动画
导航
菜单
按钮
滑块
tab
弹出层
统计图
svg
×
Close
在线代码下载提示
开通在线代码永久免费下载,需支付20jQ币
开通后,在线代码模块中所有代码可终身免费下!
您已开通在线代码永久免费下载,关闭提示框后,点下载代码可直接下载!
您已经开通过在线代码永久免费下载
对不起,您的jQ币不足!可通过发布资源 或
直接充值获取jQ币
取消
开通下载
<!doctype html> <html> <head> <meta charset="utf-8"> <title>悬停滑动图像库-jq22.com</title> <script src="https://www.jq22.com/jquery/jquery-1.10.2.js"></script> <style>
</style> </head> <body>
<script>
</script>
</body> </html>
2012-2021 jQuery插件库版权所有
jquery插件
|
jq22工具库
|
网页技术
|
广告合作
|
在线反馈
|
版权声明
沪ICP备13043785号-1
浙公网安备 33041102000314号