banner上浮气泡效果
本文最后更新于 3190 天前,其中的信息可能已经有所发展或是发生改变。

看网站顶上那堆往上飘的球就知道效果了→_→ 

或者看下面,就是酱紫:

添加方法:

先把下面的js代码引入网页(搞成js文件比较好哈):

(function() {
    var width, height, largeHeader, canvas, ctx, circles, target, animateHeader = true;
    // Main
    initHeader();
    addListeners();
    function initHeader() {
        width = window.innerWidth;
        height = document.getElementById('banner').offsetHeight;
        target = {x: 0, y: height};
        largeHeader = document.getElementById('banner');
        largeHeader.style.height = height+'px';
        canvas = document.getElementById('demo-canvas');
        canvas.width = width;
        canvas.height = height;
        ctx = canvas.getContext('2d');
        // create particles
        circles = [];
        for(var x = 0; x < width*0.8; x++) {
            var c = new Circle();
            circles.push(c);
        }
        animate();
    }
    // Event handling
    function addListeners() {
        window.addEventListener('scroll', scrollCheck);
        window.addEventListener('resize', resize);
    }
    function scrollCheck() {
        if(document.body.scrollTop > height) animateHeader = false;
        else animateHeader = true;
    }
    function resize() {
        width = window.innerWidth;
        height = document.getElementById('banner').offsetHeight;
        largeHeader.style.height = height+'px';
        canvas.width = width;
        canvas.height = height;
    }
    function animate() {
        if(animateHeader) {
            ctx.clearRect(0,0,width,height);
            for(var i in circles) {
                circles[i].draw();
            }
        }
        requestAnimationFrame(animate);
    }
    // Canvas manipulation
    function Circle() {
        var _this = this;
        // constructor
        (function() {
            _this.pos = {};
            init();
            console.log(_this);
        })();
        function init() {
            _this.pos.x = Math.random()*width;
            _this.pos.y = height+Math.random()*100;
            _this.alpha = 0.3+Math.random()*0.3;
            _this.scale = 0.3+Math.random()*0.3;
            _this.velocity = Math.random();
        }
        this.draw = function() {
            if(_this.alpha <= 0) {
                init();
            }
            _this.pos.y -= _this.velocity;
            _this.alpha -= 0.0005;
            ctx.beginPath();
            ctx.arc(_this.pos.x, _this.pos.y, _this.scale*10, 0, 2 * Math.PI, false);
            ctx.fillStyle = 'rgba(255,200,255,'+ _this.alpha+')';
            ctx.fill();
        };
    }
})();

然后,在banner的div结束前加入以下遮罩代码:

<canvas class="demo-canvas" id="demo-canvas"></canvas>

(不要吐槽id名23333)

然后就全部搞定啦~

评论

  1. 9 年前
    2016-4-05 22:16:13
    Google Chrome 49.0.2623.108 Google Chrome 49.0.2623.108 Windows 7 x64 Edition Windows 7 x64 Edition

    简直是CPU的灾难23333

  2. 9 年前
    2016-4-06 23:12:10
    Microsoft Edge 13.10586 Microsoft Edge 13.10586 Windows 10 Windows 10

    意料之内的卡炸

  3. 老王
    9 年前
    2016-5-03 20:57:12
    UC Browser 5.6.12150.8 UC Browser 5.6.12150.8 Windows 7 x64 Edition Windows 7 x64 Edition

    次一点的服务器估计就跑满了

    • 博主
      老王
      9 年前
      2016-5-03 21:07:36
      Google Chrome 50.0.2661.94 Google Chrome 50.0.2661.94 Windows 7 x64 Edition Windows 7 x64 Edition

      没看懂诶w

  4. Nice
    8 年前
    2016-11-30 21:58:05
    Google Chrome 53.0.2785.116 Google Chrome 53.0.2785.116 Windows 7 x64 Edition Windows 7 x64 Edition

    谢谢分享!!!

  5. 狸辞
    4 年前
    2021-5-14 9:33:59
    LBrowser 7.0.0.4071 LBrowser 7.0.0.4071 Windows 10 x64 Edition Windows 10 x64 Edition

    感谢大佬的分享

发送评论 编辑评论

|´・ω・)ノ
ヾ(≧∇≦*)ゝ
(☆ω☆)
(╯‵□′)╯︵┴─┴
 ̄﹃ ̄
(/ω\)
∠( ᐛ 」∠)_
(๑•̀ㅁ•́ฅ)
→_→
୧(๑•̀⌄•́๑)૭
٩(ˊᗜˋ*)و
(ノ°ο°)ノ
(´இ皿இ`)
⌇●﹏●⌇
(ฅ´ω`ฅ)
(╯°A°)╯︵○○○
φ( ̄∇ ̄o)
ヾ(´・ ・`。)ノ"
( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃
(ó﹏ò。)
Σ(っ °Д °;)っ
( ,,´・ω・)ノ"(´っω・`。)
╮(╯▽╰)╭
o(*////▽////*)q
>﹏<
( ๑´•ω•) "(ㆆᴗㆆ)
😂
😀
😅
😊
🙂
🙃
😌
😍
😘
😜
😝
😏
😒
🙄
😳
😡
😔
😫
😱
😭
💩
👻
🙌
🖕
👍
👫
👬
👭
🌚
🌝
🙈
💊
😶
🙏
🍦
🍉
😣
Source: github.com/k4yt3x/flowerhd
颜文字
Emoji
小恐龙
花!
上一篇
下一篇