周末愉快——程序猿的浪漫css画玫瑰礼盒

周末周末继续找轻松的话题,程序猿的小浪漫,css画玫瑰。

先上效果图

开箱.gif
开花.gif

体验地址:http://120.27.68.231:9999/html/giftrose.html

盒子关键css说明

1、盒子父级设置三条关键属性。

transform-style: preserve-3d;   // 使被转换的子元素保留其 3D 转换
perspective: 400px;    // 设置元素被查看位置的视图
perspective-origin: 50% 0%;    // 这样您就能够改变 3D 元素的底部位置

2、底面,正方形,然后围绕X轴旋转90度。

3、左面/右面,长方形,定位在左面/右面,然后围绕Y轴旋转90度。

4、前面/后面,长方形,通过 translateY(-100px) translateZ(100px)平移到指定位置。

5、顶面两开的,顶面左边和顶面右边分别需要移动到对应位置,然后设置围绕点,之后在旋转使盒子盖上

6、打开动画,围绕Y轴旋转。

玫瑰关键css说明

1、同样玫瑰父级设置css

transform-style: preserve-3d;   // 使被转换的子元素保留其 3D 转换
perspective: 400px;    // 设置元素被查看位置的视图
perspective-origin: 50% 0%;    // 这样您就能够改变 3D 元素的底部位置

2、玫瑰花瓣如下设置颜色渐变,圆角底部50%,顶部35%,围绕底部中间旋转。

width: 100px;
height: 100px;
border-radius: 35% 35% 50% 50%;
transform-origin: center bottom;
background: repeating-linear-gradient(#ff3631, #d30a04 20%, #380000 100%);

3、一圈一圈的堆叠花瓣,使用平移和围绕Y轴旋转,此外还需要X轴旋转提供一些打开的感觉。

transform: rotateX(-20deg) rotateY(30deg) translateZ(45px) scale(0.8);

4、用scale和z-index,让其中间花瓣变小,距离远的被遮挡。

5、画花茎和叶子,叶子就很简单啦,围绕Z轴旋转就好了。

直接上代码

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0,
minimum-scale=1.0, maximum-scale=1.0, viewport-fit=cover, user-scalable=no">
  <title>to my love</title>
</head>
<body>
<div class="gift-rose">
  <div class="content">
    <div class="box">
      <div class="bottom"></div>
      <div class="left"></div>
      <div class="right"></div>
      <div class="front">To My Love</div>
      <div class="after"></div>
      <div id="boxTopLeft" class="top-left"></div>
      <div id="boxTopRight" class="top-right"></div>

      <div id="flower" class="flower">
        <div class="stem">
          <div class="leaf leaf1"></div>
          <div class="leaf leaf2"></div>
          <div class="leaf leaf3"></div>
          <div class="leaf leaf4"></div>
        </div>

        <div class="petal slice01"></div>
        <div class="petal slice02"></div>
        <div class="petal slice03"></div>

        <div class="petal slice11"></div>
        <div class="petal slice12"></div>
        <div class="petal slice13"></div>
        <div class="petal slice14"></div>

        <div class="petal slice21"></div>
        <div class="petal slice22"></div>
        <div class="petal slice23"></div>
        <div class="petal slice24"></div>
        <div class="petal slice25"></div>
        <div class="petal slice26"></div>

        <div class="petal slice31"></div>
        <div class="petal slice32"></div>
        <div class="petal slice33"></div>
        <div class="petal slice34"></div>
        <div class="petal slice35"></div>
        <div class="petal slice36"></div>
        <div class="petal slice37"></div>
        <div class="petal slice38"></div>

        <div class="petal slice41"></div>
        <div class="petal slice42"></div>
        <div class="petal slice43"></div>
        <div class="petal slice44"></div>
        <div class="petal slice45"></div>
        <div class="petal slice46"></div>
        <div class="petal slice47"></div>
        <div class="petal slice48"></div>
        <div class="petal slice49"></div>
        <div class="petal slice50"></div>
      </div>
    </div>
  </div>
</div>

<script>

  let boxTopLeft = document.getElementById('boxTopLeft');
  let leftOpened = false;
  boxTopLeft.addEventListener("click", function (e) {
    if (leftOpened == true) {
      return;
    }
    leftOpened = true;

    boxTopLeft.classList.add("box-open-left-animation");

    setTimeout(() => {
      boxTopLeft.classList.add("box-open-left-animation-end");
    }, 1500)
  })

  let boxTopRight = document.getElementById('boxTopRight');
  let rightOpened = false;
  boxTopRight.addEventListener("click", function (e) {
    if (rightOpened == true) {
      return;
    }
    rightOpened = true;

    boxTopRight.classList.add("box-open-right-animation");

    setTimeout(() => {
      boxTopRight.classList.add("box-open-right-animation-end");
    }, 1500)
  })

  let flower = document.getElementById('flower');
  let flowerOpend = false;
  flower.addEventListener("click", function (e) {
    if (flowerOpend == true || leftOpened != true || rightOpened != true) {
      return;
    }
    flowerOpend = true;

    flower.classList.add("flower-animation");

    setTimeout(() => {
      flower.classList.add("flower-animation-end");
    }, 2000)
  })


</script>

<style>
  /*动画相关*/
  .box-open-left-animation {
    animation-name: box_open_left;
    animation-duration: 1.5s;
  }

  @keyframes box_open_left {
    0% {
      transform: rotateX(90deg) rotateY(0deg) translateZ(0px);
    }
    100% {
      transform: rotateX(90deg) rotateY(-160deg) translateZ(0px);
    }
  }

  .box-open-left-animation-end {
    transform: rotateX(90deg) rotateY(-160deg) translateZ(0px) !important;
  }

  .box-open-right-animation {
    animation-name: box_open_right;
    animation-duration: 1.5s;
  }

  @keyframes box_open_right {
    0% {
      transform: rotateX(90deg) rotateY(0deg) translateZ(0px);
    }
    100% {
      transform: rotateX(90deg) rotateY(160deg) translateZ(0px);
    }
  }

  .box-open-right-animation-end {
    transform: rotateX(90deg) rotateY(160deg) translateZ(0px) !important;
  }

  .flower-animation {
    animation-name: flower_animation;
    animation-duration: 2s;
  }

  @keyframes flower_animation {
    0% {
      transform: scale(0.25);
    }
    100% {
      transform: scale(1);
    }
  }

  .flower-animation-end {
    transform: scale(1) !important;
  }

</style>

<style>

  html, body {
    width: 100%;
    height: 100%;
    margin: 0;
  }

  * {
    box-sizing: border-box;
  }

  .gift-rose {
    width: 100%;
    height: 100%;
    box-sizing: content-box;
  }

  .gift-rose .content {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .gift-rose .content .box {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    height: 400px;
    transform-style: preserve-3d;
    perspective: 400px;
    perspective-origin: 50% 0%;
  }

  .gift-rose .content .box .top-left {
    position: absolute;
    margin-left: -100px;
    bottom: 100px;
    left: 50%;
    width: 100px;
    height: 200px;
    background-color: #ffad60;
    border: 1px solid #666;
    transform-origin: left center;
    transform: rotateX(90deg) rotateY(0deg) translateZ(0px);
    z-index: 1000;
  }

  .gift-rose .content .box .top-right {
    position: absolute;
    margin-left: 0px;
    bottom: 100px;
    left: 50%;
    width: 100px;
    height: 200px;
    background-color: #ffad60;
    border: 1px solid #666;
    transform-origin: right center;
    transform: rotateX(90deg) rotateY(0deg) translateZ(0px);
    z-index: 1000;
  }

  .gift-rose .content .box .bottom {
    position: absolute;
    margin-left: -100px;
    bottom: 0px;
    left: 50%;
    width: 200px;
    height: 200px;
    background-color: #ffad60;
    border: 1px solid #666;
    transform: rotateX(90deg) rotateY(0deg) rotateZ(0deg) translateZ(0px);
    z-index: -100;
  }

  .gift-rose .content .box .right {
    position: absolute;
    margin-left: 0px;
    bottom: 100px;
    left: 50%;
    width: 200px;
    height: 100px;
    background-color: #ffad60;
    border: 1px solid #666;
    transform: rotateX(0deg) rotateY(90deg) rotateZ(0deg);
    z-index: -100;
  }

  .gift-rose .content .box .left {
    position: absolute;
    margin-left: -200px;
    bottom: 100px;
    left: 50%;
    width: 200px;
    height: 100px;
    background-color: #ffad60;
    border: 1px solid #666;
    transform: rotateX(0deg) rotateY(-90deg) rotateZ(0deg);
    z-index: -100;
  }

  .gift-rose .content .box .front {
    position: absolute;
    margin-left: -100px;
    bottom: 0px;
    left: 50%;
    width: 200px;
    height: 100px;
    background-color: #ffad60;
    border: 1px solid #666;
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) translateY(-100px) translateZ(100px);
    z-index: 1000;
    padding: 10px;
    font-size: 18px;
  }

  .gift-rose .content .box .after {
    position: absolute;
    margin-left: -100px;
    bottom: 0px;
    left: 50%;
    width: 200px;
    height: 100px;
    background-color: #ffad60;
    border: 1px solid #666;
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) translateY(-100px) translateZ(-100px);
    z-index: -100;
  }

  .gift-rose .content .flower {
    position: absolute;
    left: 0;
    bottom: 50px;
    overflow: hidden;
    width: 100%;
    height: 600px;
    transform-style: preserve-3d;
    perspective: 400px;
    perspective-origin: 50% 0%;
    transform-origin: center bottom;
    transform: scale(0.25);
  }

  .gift-rose .content .flower .stem {
    position: absolute;
    left: 50%;
    top: 200px;
    margin-left: -10px;
    width: 20px;
    height: 100%;
    background: linear-gradient(to right, #0f0 0%, #060 50%, #004b00 100%);
  }

  .gift-rose .content .flower .stem .leaf {
    position: absolute;
    border-radius: 50%;
  }

  .gift-rose .content .flower .stem .leaf1 {
    top: 40px;
    right: 20px;
    width: 100px;
    height: 40px;
    background: linear-gradient(to right, #0f0 0%, #060 70%, #004b00 100%);
    transform: rotateX(0deg) rotateY(0deg) rotateZ(30deg) translateZ(10px);
  }

  .gift-rose .content .flower .stem .leaf2 {
    top: 70px;
    left: 20px;
    width: 100px;
    height: 40px;
    background: linear-gradient(to left, #0f0 0%, #060 70%, #004b00 100%);
    transform: rotateX(0deg) rotateY(0deg) rotateZ(-30deg) translateZ(10px);
  }

  .gift-rose .content .flower .stem .leaf3 {
    top: 150px;
    right: 20px;
    width: 140px;
    height: 55px;
    z-index: 200;
    background: linear-gradient(to right, #0f0 0%, #060 70%, #004b00 100%);
    transform: rotateX(0deg) rotateY(0deg) rotateZ(30deg) translateZ(10px);
  }

  .gift-rose .content .flower .stem .leaf4 {
    top: 180px;
    left: 20px;
    width: 140px;
    height: 55px;
    z-index: 200;
    background: linear-gradient(to left, #0f0 0%, #060 70%, #004b00 100%);
    transform: rotateX(0deg) rotateY(0deg) rotateZ(-30deg) translateZ(10px);
  }

  .gift-rose .content .flower .petal {
    position: absolute;
    left: 50%;
    margin-left: -50px;
    top: 50px;
    width: 100px;
    height: 100px;
    border-radius: 35% 35% 50% 50%;
    transform-origin: center bottom;
    background: repeating-linear-gradient(#ff3631, #d30a04 20%, #380000 100%);
    overflow: hidden;
  }

  .gift-rose .content .flower .slice01 {
    transform: rotateX(-2deg) rotateY(0deg) translateY(-10px) translateZ(10px) scale(0.4);
    z-index: 590;
  }

  .gift-rose .content .flower .slice02 {
    transform: rotateX(-2deg) rotateY(120deg) translateY(-10px) translateZ(10px) scale(0.4);
    z-index: 580;
  }

  .gift-rose .content .flower .slice03 {
    transform: rotateX(-2deg) rotateY(240deg) translateY(-10px) translateZ(10px) scale(0.4);
    z-index: 580;
  }

  .gift-rose .content .flower .slice11 {
    transform: rotateX(-15deg) rotateY(15deg) translateZ(30px) scale(0.7);
    z-index: 690;
  }

  .gift-rose .content .flower .slice12 {
    transform: rotateX(-15deg) rotateY(105deg) translateZ(30px) scale(0.7);
    z-index: 680;
  }

  .gift-rose .content .flower .slice13 {
    transform: rotateX(-15deg) rotateY(195deg) translateZ(30px) scale(0.7);
    z-index: 460;
  }

  .gift-rose .content .flower .slice14 {
    transform: rotateX(-15deg) rotateY(285deg) translateZ(30px) scale(0.7);
    z-index: 680;
  }

  .gift-rose .content .flower .slice21 {
    transform: rotateX(-20deg) rotateY(30deg) translateZ(45px) scale(0.8);
    z-index: 790;
  }

  .gift-rose .content .flower .slice22 {
    transform: rotateX(-20deg) rotateY(90deg) translateZ(45px) scale(0.8);
    z-index: 780;
  }

  .gift-rose .content .flower .slice23 {
    transform: rotateX(-20deg) rotateY(150deg) translateZ(45px) scale(0.8);
    z-index: 360;
  }

  .gift-rose .content .flower .slice24 {
    transform: rotateX(-20deg) rotateY(210deg) translateZ(45px) scale(0.8);
    z-index: 340;
  }

  .gift-rose .content .flower .slice25 {
    transform: rotateX(-20deg) rotateY(270deg) translateZ(45px) scale(0.8);
    z-index: 360;
  }

  .gift-rose .content .flower .slice26 {
    transform: rotateX(-20deg) rotateY(330deg) translateZ(45px) scale(0.8);
    z-index: 780;
  }

  .gift-rose .content .flower .slice31 {
    transform: rotateX(-25deg) rotateY(45deg) translateZ(60px) scale(0.9);
    z-index: 890;
  }

  .gift-rose .content .flower .slice32 {
    transform: rotateX(-25deg) rotateY(90deg) translateZ(60px) scale(0.9);
    z-index: 880;
  }

  .gift-rose .content .flower .slice33 {
    transform: rotateX(-25deg) rotateY(135deg) translateZ(60px) scale(0.9);
    z-index: 260;
  }

  .gift-rose .content .flower .slice34 {
    transform: rotateX(-25deg) rotateY(180deg) translateZ(60px) scale(0.9);
    z-index: 240;
  }

  .gift-rose .content .flower .slice35 {
    transform: rotateX(-25deg) rotateY(225deg) translateZ(60px) scale(0.9);
    z-index: 220;
  }

  .gift-rose .content .flower .slice36 {
    transform: rotateX(-25deg) rotateY(270deg) translateZ(60px) scale(0.9);
    z-index: 240;
  }

  .gift-rose .content .flower .slice37 {
    transform: rotateX(-25deg) rotateY(315deg) translateZ(60px) scale(0.9);
    z-index: 860;
  }

  .gift-rose .content .flower .slice38 {
    transform: rotateX(-25deg) rotateY(360deg) translateZ(60px) scale(0.9);
    z-index: 880;
  }

  .gift-rose .content .flower .slice41 {
    transform: rotateX(-28deg) rotateY(24deg) translateZ(85px) scale(1);
    z-index: 999;
  }

  .gift-rose .content .flower .slice42 {
    transform: rotateX(-28deg) rotateY(60deg) translateZ(85px) scale(1);
    z-index: 990;
  }

  .gift-rose .content .flower .slice43 {
    transform: rotateX(-28deg) rotateY(96deg) translateZ(85px) scale(1);
    z-index: 80;
  }

  .gift-rose .content .flower .slice44 {
    transform: rotateX(-28deg) rotateY(132deg) translateZ(85px) scale(1);
    z-index: 170;
  }

  .gift-rose .content .flower .slice45 {
    transform: rotateX(-28deg) rotateY(168deg) translateZ(85px) scale(1);
    z-index: 160;
  }

  .gift-rose .content .flower .slice46 {
    transform: rotateX(-28deg) rotateY(204deg) translateZ(85px) scale(1);
    z-index: 150;
  }

  .gift-rose .content .flower .slice47 {
    transform: rotateX(-28deg) rotateY(240deg) translateZ(85px) scale(1);
    z-index: 160;
  }

  .gift-rose .content .flower .slice48 {
    transform: rotateX(-28deg) rotateY(276deg) translateZ(85px) scale(1);
    z-index: 970;
  }

  .gift-rose .content .flower .slice49 {
    transform: rotateX(-28deg) rotateY(312deg) translateZ(85px) scale(1);
    z-index: 980;
  }

  .gift-rose .content .flower .slice50 {
    transform: rotateX(-28deg) rotateY(348deg) translateZ(85px) scale(1);
    z-index: 990;
  }
</style>
</body>
</html>

谢谢阅读,原创不易,欢迎关注收藏点赞,也欢迎留言讨论。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 201,312评论 5 473
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,578评论 2 377
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,337评论 0 333
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,134评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,161评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,303评论 1 280
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,761评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,421评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,609评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,450评论 2 317
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,504评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,194评论 3 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,760评论 3 303
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,836评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,066评论 1 257
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,612评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,178评论 2 341

推荐阅读更多精彩内容

  • 今天又来一了一篇关于3D效果的文章,教你打造自己的3D旋转盒首先还是希望大家自己看看关于transform这个属性...
    DJL箫氏阅读 2,116评论 5 3
  • 学会使用CSS选择器熟记CSS样式和外观属性熟练掌握CSS各种选择器熟练掌握CSS各种选择器熟练掌握CSS三种显示...
    七彩小鹿阅读 6,303评论 2 66
  • 为了此次文章教程,利用下班在家空余时间撸图撸了两个凌晨,原则只做原创精品设计文章,好案例配好文章,希望大家能喜欢,...
    93091cdf8ebb阅读 3,121评论 0 48
  • 选择qi:是表达式 标签选择器 类选择器 属性选择器 继承属性: color,font,text-align,li...
    wzhiq896阅读 1,725评论 0 2
  • 选择qi:是表达式 标签选择器 类选择器 属性选择器 继承属性: color,font,text-align,li...
    love2013阅读 2,300评论 0 11