七夕的朋友圈 —— 炸锅了

简介: 七夕的朋友圈 —— 炸锅了

大事件

今早起来,逛逛朋友圈,看到的全是各种秀。唉,图片咱就不放了,难免戳中某位朋友瘦小的心灵,主要我也怕,你们知道叭。

这种时候怎么能让我们的朋友圈是白茫茫的一片呢?必须怼回去,这气可不能受,下面的操作学会了,这波气势也不输,还不快快学起来~~

文件建立

桌面右击,新建文本文档

将文件命名格式修改为 .css ,保存, js 文件建立同理

3D立体相册

demo.css

html {
    background: #000;
    height: 100%;
}
.wrap {
    position: relative;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    margin: auto;
}
.cube {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    transform-style: preserve-3d;
    transform: rotateX(-30deg) rotateY(-80deg);
    -webkit-animation: rotate 20s infinite;
    animation-timing-function: linear;
}
@-webkit-keyframes rotate {
    from {
        transform: rotateX(0deg) rotateY(0deg);
    }
    to {
        transform: rotateX(360deg) rotateY(360deg);
    }
}
.cube div {
    position: absolute;
    width: 200px;
    height: 200px;
    opacity: 0.8;
    transition: all .4s;
}
.pic {
    width: 200px;
    height: 200px;
}
.cube .out_front {
    transform: rotateY(0deg) translateZ(100px);
}
.cube .out_back {
    transform: translateZ(-100px) rotateY(180deg);
}
.cube .out_left {
    transform: rotateY(90deg) translateZ(100px);
}
.cube .out_right {
    transform: rotateY(-90deg) translateZ(100px);
}
.cube .out_top {
    transform: rotateX(90deg) translateZ(100px);
}
.cube .out_bottom {
    transform: rotateX(-90deg) translateZ(100px);
}
.cube span {
    display: bloack;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50px;
    left: 50px;
}
.cube .in_pic {
    width: 100px;
    height: 100px;
}
.cube .in_front {
    transform: rotateY(0deg) translateZ(50px);
}
.cube .in_back {
    transform: translateZ(-50px) rotateY(180deg);
}
.cube .in_left {
    transform: rotateY(90deg) translateZ(50px);
}
.cube .in_right {
    transform: rotateY(-90deg) translateZ(50px);
}
.cube .in_top {
    transform: rotateX(90deg) translateZ(50px);
}
.cube .in_bottom {
    transform: rotateX(-90deg) translateZ(50px);
}
.cube:hover .out_front {
    transform: rotateY(0deg) translateZ(200px);
}
.cube:hover .out_back {
    transform: translateZ(-200px) rotateY(180deg);
}
.cube:hover .out_left {
    transform: rotateY(90deg) translateZ(200px);
}
.cube:hover .out_right {
    transform: rotateY(-90deg) translateZ(200px);
}
.cube:hover .out_top {
    transform: rotateX(90deg) translateZ(200px);
}
.cube:hover .out_bottom {
    transform: rotateX(-90deg) translateZ(200px);
}

效果展示

爱心表白

test.css

* {
    margin: 0;
    padding: 0;
    border: 0;
}
.icon-love {
    width: 400px;
}
html,
body {
    width: 100%;
    height: 100%;
}
body {
    overflow: hidden;
}
.container {
    width: 100%;
    height: 100%;
    position: relative;
}
.body_left {
    width: 300px;
    height: 300px;
    left: 0;
    bottom: 110px;
    position: absolute;
    z-index: 98;
}
.container .love {
    width: 520px;
    height: 440px;
    left: 50%;
    top: 50%;
    position: absolute;
    margin: -260px 0 0 -220px;
}
.love .block {
    right: 0;
    position: absolute;
    visibility: hidden;
    background-color: yellow;
}
.love .block div {
    width: 40px;
    height: 40px;
    position: absolute;
    background: url("../image/love.jpg") no-repeat;
    background-size: contain;
    box-sizing: border-box;
}
@keyframes border {
    0% {
        width: 0;
    }
    5% {
        width: 5%;
    }
    10% {
        width: 10%;
    }
    15% {
        width: 15%;
    }
    20% {
        width: 20%;
    }
    25% {
        width: 25%;
    }
    30% {
        width: 30%;
    }
    35% {
        width: 35%;
    }
    40% {
        width: 40%;
    }
    45% {
        width: 45%;
    }
    50% {
        width: 50%;
    }
    55% {
        width: 55%;
    }
    60% {
        width: 60%;
    }
    65% {
        width: 65%;
    }
    70% {
        width: 70%;
    }
    75% {
        width: 75%;
    }
    80% {
        width: 80%;
    }
    85% {
        width: 85%;
    }
    90% {
        width: 90%;
    }
    95% {
        width: 95%;
    }
    100% {
        width: 100%;
    }
}
.footer {
    bottom: 30px;
    position: relative;
    z-index: 99;
}
.footer .border .border-top {
    border-top: 3px solid black;
    transform-origin: left center;
    -webkit-animation: border 312 linear;
    -o-animation: border 12s linear;
    animation: border 12s linear;
    animation-fill-mode: both;
}
.footer .border .border-bottom {
    float: right;
    border-top: 3px solid red;
    transform-origin: right center;
    -webkit-animation: border 7s linear 12s;
    -o-animation: border 7s linear 12s;
    animation: border 7s linear 12s;
    animation-fill-mode: both;
}
.footer .copyright {
    width: 100%;
    height: 30px;
    position: absolute;
    bottom: -30px;
    text-align: center;
}
.copyright div {
    width: 30%;
    line-height: 30px;
    display: inline-block;
}
.copyright div span {
    color: dimgray;
}

Mylove.js

const blk_pitn = {
    block1: [[0, 1], [0, 0], [-1, 0], [-1, -1]],
    block2: [[0, 1], [0, 0], [-1, 0], [0, -1]],
    block3: [[-1, 1], [0, 0], [-1, 0], [-1, -1]],
    block4: [[0, 1], [0, 0], [-1, 0], [-1, -1]],
    block5: [[-1, 1], [0, 0], [-1, 0], [0, -1]],
    block6: [[0, -1], [0, 0], [-1, 0], [1, -1]],
    block7: [[-1, -1], [0, 0], [-1, 0], [1, 0]],
    block8: [[-1, 1], [0, 0], [-1, 0], [-1, -1]],
    block9: [[0, -1], [0, 0], [-1, 0], [1, 0]],
    block10: [[-1, 1], [0, 0], [-1, 0], [1, 0]],
    block11: [[2, 0], [0, 0], [-1, 0], [1, 0]],
    block12: [[0, 1], [0, 0], [-1, 0], [0, -1]],
    block13: [[0, 1], [0, 0], [-1, 0], [-1, -1]],
    block14: [[1, 1], [0, 0], [-1, 0], [1, 0]],
    block15: [[1, -1], [0, 0], [-1, 0], [1, 0]],
    block16: [[-1, -1], [0, 0], [-1, 0], [1, 0]],
    block17: [[0, 1], [0, 0], [-1, 0], [0, -1]],
    block18: [[0, 1], [0, 0], [-1, 0], [-1, -1]],
    block19: [[0, -1], [0, 0], [-1, 0], [1, 0]],
    block20: [[1, -1], [0, 0], [-1, 0], [1, 0]],
    block21: [[0, 1], [0, 0], [-1, 0], [-1, -1]],
    block22: [[1, 1], [0, 0], [-1, 0], [1, 0]],
    block23: [[0, 2], [0, 0], [0, -1], [0, 1]]
},
    offset_pitn = {
        block1: [5, 3],
        block2: [5, 1],
        block3: [3, 4],
        block4: [3, 2],
        block5: [3, -1],
        block6: [2, 5],
        block7: [2, 1],
        block8: [1, -1],
        block9: [1, -3],
        block10: [1, 2],
        block11: [0, 3],
        block12: [0, 0],
        block13: [-1, -4],
        block14: [0, -2],
        block15: [-2, 4],
        block16: [-2, 2],
        block17: [-2, 0],
        block18: [-3, -2],
        block19: [-4, 0],
        block20: [-3, 5],
        block21: [-5, 3],
        block22: [-4, 1],
        block23: [-6, 1]
    };
let blocks = document.getElementsByClassName("block"),
    block = blocks[0],
    love = document.getElementsByClassName("love")[0],
    timer = null,
    index = 0,
    clone_block;
block.style.top = "50%";
block.style.left = "50%";
block.style.margin = "-20px 0 0 -20px";
const block_left = parseFloat(window.getComputedStyle(block, null).left.slice(0, -2)),
    block_top = parseFloat(window.getComputedStyle(block, null).top.slice(0, -2));
function Next() {
    if (++index >= 24) {
        clearInterval(timer);
        Rise();
        return;
    }
    block.style.visibility = "visible";
    block.style.left = block_left + 40 * offset_pitn["block" + index][0] + "px";
    block.style.top = block_top - 40 * offset_pitn["block" + index][1] + "px";
    for (let i = 0; i < block.children.length; i++) {
        block.children[i].style.left = blk_pitn["block" + index][i][0] * -40 + "px";
        block.children[i].style.top = blk_pitn["block" + index][i][1] * -40 + "px";
    }
    clone_block = block.cloneNode(true);
    love.appendChild(clone_block);
    if (love.children.length >= 24) {
        blocks[blocks.length - 1].children[2].style.display = "none";
        block.style.display = "none";
    }
}
function Rise() {
    console.log("begin");
    let timer2 = null,
        distance = 0;
    const target = 120,
        speed = 1;
    let love_top = parseFloat(window.getComputedStyle(love, null).top.slice(0, -2));
    timer2 = setInterval(() => {
        distance += speed;
        if (distance >= target) {
            clearInterval(timer2);
            console.log("over");
        }
        love.style.top = (love_top - distance) + "px";
    }, 22);
}
window.onload = function () {
    setTimeout(() => {
        timer = setInterval(() => {
            Next();
        }, 300);
    }, 12000);
};

效果展示


xdm,师弟只能带你到这里了,剩下的修行就靠你们自己了,我先行一步,暂且告退……



相关文章
|
6月前
|
SQL 小程序 Java
情侣恋爱日记本
情侣恋爱日记本
|
存储 缓存 NoSQL
七夕节迟来的礼物
七夕节迟来的礼物
93 0
|
前端开发
新年到,一起听听这些新年歌曲
每年过年,不管是大街小巷还是春晚的舞台上,歌曲都是必不可少的,热热闹闹才是年嘛,那今天跟着我一起来用我这个半吊子前端水平开发的简易的手机音乐盒听听那些新年歌曲吧,我是90后所以歌都比较的老,但是越老的歌越有味道嘛,来吧看看这个简易手机音乐盒是怎么实现的。
204 0
新年到,一起听听这些新年歌曲
|
人工智能 编解码 达摩院
中秋,和千年前的朋友一起上央视
昨天,杭州图书馆和达摩院的合作项目「AI算法复现古人“吟咏”中秋画面」,获得了CCTV13的报道。
493 0
中秋,和千年前的朋友一起上央视
爱豆蔡徐坤的音乐能量就是这么大!ikun追梦音乐计划圆梦乡村孩子~
蔡徐坤联合应援粉丝团与海南成美慈善基金会联合阿里巴巴公益平台共同发起了“童声飞扬·蔡徐坤追梦音乐计划”,一起为乡村小学组建童声合唱团,圆乡村孩子的音乐梦。
2417 1
我被阿里云美女清宵的观后感给撩了
这是她看完药神之后的观后感,看到chanel的声明,就吸引我一直把它读完。 package main import ( "fmt" "math/rand" "sync" "time" ) var ( r = rand.
1595 0
|
新零售
从捡破烂到亿万富翁,这个快递人的故事比电视剧还励志
安徽亳州,一座占地面积158亩的“圆通速递皖北区域现代产业园”正拔地而起。圆通速递在这座产业园上投入了上亿元,46岁的曹玉根是负责人。谁会相信,13年前,这位靠快递起家的大老板,还在深圳踩着三轮车靠收破烂为生。
1756 0