Toggle navigation
在线编辑器
在线代码
文本比较
jQuery下载
前端库
在线手册
登录/注册
下载代码
html
css
js
分享到微信朋友圈
X
html
Gooey Data Visualization
DOM nodes only
And Comic Sans
4
Rain the bow!
css
* { margin: 0; border: none; font-family: Comic Sans MS, 'Open Sans', Arial, sans-serif; } html, body { height: 100%; } body { overflow: hidden; background: white; position: relative; } .container, .top-layer { position: absolute; margin: auto; top: 0; bottom: 0; left: 0; right: 0; width: 800px; height: 800px; } .container { background: white; filter: blur(20px) contrast(30); } .top-layer { } .atom { width: 100px; height: 100px; border-radius: 50%; position: absolute; background: black; } .fig { position: absolute; color: white; text-shadow: rgba(255, 255, 255, 1) 0px 0px 3px; font-size: 20px; transform: translateX(-50%) translateY(-50%); } .ui { position: absolute; background: rgba(0, 0, 0, 0.1); width: 100%; height: 100%; text-align: center; } .ui h1 { padding-top: 30px; } .ui h3 { color: #555; } .ui h5 { color: #BBB; font-size: 9px; } .ui.hide > * { display: none; } .controls { position: absolute; left: 0; right: 0; margin: auto; bottom: 50px; } .controls p.more, .controls p.less { border: 15px solid transparent; width: 0px; margin: auto; cursor: pointer; } .controls p.more:hover { border-bottom-color: #555; } .controls p.less:hover { border-top-color: #555; } .controls p.more { border-bottom: 15px solid black; } .controls p.less { border-top: 15px solid black; } .controls p.atoms-pop { font-size: 40px; font-weight: bold; cursor: default; } .controls p.rainbao { background: linear-gradient(to left, red, yellow, green, turquoise, blue, purple, red); color: white; width: 150px; margin: auto; border-radius: 5px; border: solid 1px black; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px inset; text-shadow: rgba(0, 0, 0, 0.5) 0px 0px 2px; text-transform: uppercase; cursor: pointer; padding: 5px; opacity: 0.8; display: none; } .sx-link { position: absolute; right: 10px; bottom: 10px; }
JavaScript
var interval, atomsPop = 4, $container, $topLayer, width, height, makeItRain = false; jQuery(document).ready(function() { $container = jQuery('.container'); $topLayer = jQuery('.top-layer'); width = $container.width(); height = $container.height(); // Hide info if small viewport if (window.innerHeight < 600) jQuery('.ui').addClass('hide'); initGooey(); jQuery('.controls .more').on('click', function() { if (atomsPop >= 7) return false; atomsPop++; initGooey(); jQuery('.controls .atoms-pop').html(atomsPop); }); jQuery('.controls .less').on('click', function() { if (atomsPop <= 2) return false; atomsPop--; initGooey(); jQuery('.controls .atoms-pop').html(atomsPop); }); setTimeout(function() { jQuery('.controls .rainbao').css('display', 'inherit'); }, 20000); jQuery('.controls .rainbao').on('click', function() { makeItRain = !makeItRain; initGooey(); }); }); var initGooey = function() { // Kill former loop if any clearInterval(interval); // Write nodes $container.html(''); $topLayer.html(''); for (var i = 1; i <= atomsPop; i++) { $container.append('
'); if (makeItRain) $container.find('.atom-' + i).css('background', 'hsl(' + 120 * i + ', 90%, 50%)'); $topLayer.append('
0%
'); jQuery('.controls .atoms-pop').html(atomsPop); } // Init atom objects var atoms = []; for (var i = 1; i <= atomsPop; i++) { atoms.push({ weight: undefined, size: undefined, x: undefined, y: undefined }) } var split = 5; var t = 0; interval = setInterval(function() { t++; // Evolve weights randomly var totalWeight = 0; for (var i = 0; i < atomsPop; i++) { atoms[i].weight = 50 + 50 * Math.sin(t / (10 + 3.564 * i)); totalWeight += atoms[i].weight; } // Convert to size for (var i = 0; i < atomsPop; i++) { atoms[i].size = 30 + 300 * atoms[i].weight / totalWeight; } // Compute positions as well for (var i = 0; i < atomsPop; i++) { var angle = 2 * Math.PI * i / atomsPop; var r = split + atoms[i].size / 2; atoms[i].x = 0 + r * Math.cos(angle); atoms[i].y = 0 + r * Math.sin(angle); atoms[i].left = width / 2 + atoms[i].x - atoms[i].size / 2; atoms[i].top = height / 2 + atoms[i].y - atoms[i].size / 2; // Then update CSS and text $container.find('.atom-' + (i + 1)).css({ "height": atoms[i].size, "width": atoms[i].size, "left": atoms[i].left, "top": atoms[i].top }); $topLayer.find('.fig-' + (i + 1)).css({ "left": width / 2 + atoms[i].x, "top": height / 2 + atoms[i].y, "fontSize": 0.3 * atoms[i].size - 1.5 * atomsPop }).html(Math.round(100 * atoms[i].weight / totalWeight) + '%'); } }, 30); };
粒子
时间
文字
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号