search
HomeWeb Front-endHTML TutorialCreate a cute frog expression using html
Create a cute frog expression using htmlJun 24, 2017 pm 12:16 PM
htmlanimationbuildseries

First feel all the emoticons:
Before starting, let’s have a knowledge point: Flex elastic layout
  • We generally use the float method for horizontal three-column layout, and display each floating block in the same line. This method will result in the element not having the original height attribute, and clearing the float is required to solve the space occupation problem. It is very inconvenient for those special layouts. For example, vertical centering is not easy to achieve.

  • In 2009, W3C proposed a new solution - Flex layout, which can realize various page layouts simply, completely and responsively. Currently, it is supported by almost all browsers, which means that it is safe to use this feature now. Check out the blog for basic syntax: Flex Layout Tutorial: Grammar

  • In addition, you must have a certain understanding of pseudo-elements in css: before, after

  • Finally, if you want to make the expression move, the most important thing is to use the animation attribute.

Overall layout
  • We first lay out the overall seat so that each expression can be displayed intuitively in each position, because each The emoticons almost occupy a square space, so we display each frog emoticon horizontally on the page, using flex layout here.

    <div class="container"><!--所有表情的存放容器,flex布局,所有子项目水平显示,自动换行,水平居中显示,竖直方向从顶部开始--><div class="emoji-container">   <!--存放青蛙表情的大容器,控制大小间距之类的属性--><div class="icon">       <!--存放每一个青蛙表情的容器,控制每一个表情自己的位置和特征--><div class="frog" id="frog-n"></div></div></div></div>
    body {background-color: #F1FFE6;}
    .container {width: 950px;margin: 70px auto 0px auto;text-align: center;}
    .container .emoji-container {
    /*flex弹性布局,多用于左右并排布局,跟float的作用类似,不用清除浮动*/
    display: -webkit-box;   
    display: -ms-flexbox;
    display: flex;
    /*justify-content属性定义了项目在主轴上的对齐方式。center就是在x轴上居中显示*/
    -ms-grid-column-align: center;
        justify-items: center;
    /*align-items属性定义项目在交叉轴上如何对齐。flex-start就是从y轴的最上端开始排列*/
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    /*flex-wrap属性定义,如果一条轴线排不下,如何换行。wrap:换行,第一行在上方。*/
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .container .emoji-container .icon {
    margin-right: 40px;
    margin-bottom: 40px;
    }
    .container .emoji-container .icon:nth-child(6n) {
    margin-right: 0px;
    }
    .icon {width: 125px;height: 120px;position: relative;}
    .icon .frog {position: absolute; top: 0;left: 0;width: 100%;height: 100%;}
General style of frogs
  • Observe the expressions of each frog. Although each expression has a different shape, their bodies , mouth, eyes, and the position and size of the small blush are almost the same. We can write these consistent styles as common styles, and then write a single style for each frog's characteristics according to each person's frog ID for redrawing or overwriting.

    <div class="frog" id="frog-1">
          <!-- 蛙蛙的身体部分 -->
          <div class="body">
            <!-- 蛙蛙的嘴巴 -->
            <div class="mouth"></div>
          </div>
          <!-- 蛙蛙的眼睛 -->
          <div class="eyes">
            <!-- 蛙蛙的左右眼睛 -->
            <div class="eye eye-left">
              <!-- 蛙蛙的内眼圈儿 -->
              <div class="eye-inner">
                <!-- 蛙蛙的眼珠 -->
                <div class="pupil">
                  <!-- 蛙蛙眼圈里的光晕 -->
                  <div class="light"></div>
                </div>
              </div>
            </div>
            <div class="eye eye-right">
              <div class="eye-inner">
                <div class="pupil">
                  <div class="light"></div>
                </div>
              </div>
            </div>
          </div>        
        </div>/*蛙蛙身体部分样式*/.icon .frog .body {width: 110px;height: 86px;background-color: #A3D768;                   border-radius: 50%;position: absolute;top: 25px;left: 0;right: 0;margin: auto;box-shadow: 4px 4px 0px 0px rgba(163, 215, 104, 0.3);
    }/*蛙蛙嘴巴部分样式,因为每个蛙蛙的嘴巴不一样,所以公共样式就只定义了位置*/.icon .frog .body .mouth {margin: auto;}.icon .frog .eyes {width: 86px;height: 35px;position: absolute;                   top: 8px;left: 0;right: 0;margin: auto;
    }/*蛙蛙眼睛部分样式*/.icon .frog .eyes .eye {width: 35px;height: 35px;}.icon .frog .eyes .eye:before {content: "";display: block;width: 100%;height: 100%;                               background-color: #A3D768;border-radius: 50%;
    }/*蛙蛙眼圈部分样式*/.icon .frog .eyes .eye .eye-inner {background-color: #fff;width: 80%;height: 80%;          position: absolute;top: 10%;left: 10%;border-radius: 50%;
    }/*蛙蛙眼珠部分样式*/.icon .frog .eyes .eye .eye-inner .pupil {background-color: #3F6A34;          width: 60%;height: 60%;position: absolute;top: 20%;left: 20%;border-radius: 50%;
    }/*蛙蛙眼珠里的亮光部分样式*/.icon .frog .eyes .eye .eye-inner .pupil .light {background-color: #fff;          width: 50%;height: 50%;position: absolute;top: 10%;left: 10%;border-radius: 50%;
    }/*蛙蛙左右两边眼睛的位置*/.icon .frog .eyes .eye-left {position: absolute;top: 0px;left: 0;}.icon .frog .eyes .eye-right {position: absolute;top: 0px;right: 0;}

    Frog frog basic common style.png
The first little frog
A little frog
  • The first little frog has a dynamic effect with the corners of its mouth rising based on the basic style, so to complete the drawing of the first frog, just create it in the public Just add the animation of the mouth based on the style, and the dom structure is the same.

    .frog#frog-1 .body .mouth {width: 18px;height: 22px;border-bottom: 3px solid #3F6A34;position: absolute;top: 6px;left: 0;right: 0;-webkit-animation: smile 3.8s linear 0s infinite;animation: smile 3.8s linear 0s infinite;
    }
    @-webkit-keyframes smile {
    0% {  border-radius: 0%;
    }
    20% {  border-radius: 50%;
    }
    70% {  border-radius: 50%;
    }
    }
    @keyframes smile {
    0% {  border-radius: 0%;
    }
    20% {  border-radius: 50%;
    }
    70% {  border-radius: 50%;
    }
    }

    The first frog animation.gif
The second little frog
    • The mouth of the second little frog is a big mouth, and there are two small blushes on the cheeks. The eyes are filled with love, so a blush div must be added to the dom structure. The style of the mouth and eyes should also be modified accordingly. (Mainly the production of mouth, blush and red heart)

      <div class="frog" id="frog-2">    
            <div class="body">
              <!--存放蛙蛙的脸颊红晕-->
              <div class="blush"></div>
             <!--加上大嘴巴的class big-month-->
              <div class="mouth big-mouth"></div>
            </div>    
            <div class="eyes">
              <div class="eye eye-left">
                <div class="eye-inner">
                  <div class="pupil">
                    <div class="light"></div>
                  </div>
                </div>
              </div>
              <div class="eye eye-right">
                <div class="eye-inner">
                  <div class="pupil">
                    <div class="light"></div>
                  </div>
                </div>
              </div>
            </div>        
          </div>/*第二只青蛙脸颊两边的红晕样式*/.icon .frog .body .blush {width: 75px;height: 9px;position: absolute;top: 20px;left: 0;right: 0;margin: auto;
      }.icon .frog .body .blush:before, .icon .frog .body .blush:after {content: "";display: block;width: 12px;height: 100%;background-color: #F7D2C9;border-radius: 50%;
      }.icon .frog .body .blush:before {position: absolute;top: 0;left: 0;}.icon .frog .body .blush:after {position: absolute;top: 0;right: 0;}/*第二只青蛙的嘴巴样式,用圆角和阴影的方式制作而成*/.icon .frog .body .big-mouth {width: 30px;height: 20px;border-radius: 0 0 50% 50%;box-shadow: 2px 2px 0px 0px rgba(63, 106, 52, 0.3);
      }
      .frog#frog-2 .mouth {background-color: #fff;position: absolute;top: 30px;left: 0;right: 0;
      }/*第二只青蛙的眼睛样式,将眼圈的背景设置为透明色,圆圈里面的亮光隐藏*/
      .frog#frog-2 .eye-inner {top: 17%;background-color: transparent !important;
      -webkit-animation: hearts 0.6s linear 0s infinite alternate;animation: hearts 0.6s linear 0s infinite alternate;
      }
      @-webkit-keyframes hearts {0% {
        -webkit-transform: scale(0.7);          transform: scale(0.7);
      }100% {
        -webkit-transform: scale(1);          transform: scale(1);
      }
      }
      @keyframes hearts {0% {
        -webkit-transform: scale(0.7);          transform: scale(0.7);
      }100% {
        -webkit-transform: scale(1);          transform: scale(1);
      }
      }/*第二只青蛙的眼睛的爱心样式,左上角和右上角设置交圆角50%,然后左右对应的旋转45度合并成一个爱心的形状*/
      .frog#frog-2 .eye-inner:before, .frog#frog-2 .eye-inner:after {content: "";display: block;          height: 70%;width: 40%;background-color: #C71F1C;border-radius: 50% 50% 0 0;
      }
      .frog#frog-2 .eye-inner:before {position: absolute;top: 0;left: 5px;
                 -webkit-transform: rotate(-45deg);transform: rotate(-45deg);
      }
      .frog#frog-2 .eye-inner:after {position: absolute;top: 0;right: 5px;
                  -webkit-transform: rotate(45deg);transform: rotate(45deg);
      }
      .frog#frog-2 .eye-inner .pupil {display: none;}
##The second frog animation.gif
The third little frog
  • The changes of the third little frog relative to the public style are the changes of the eyes and mouth, so the most important thing is to draw Left eye style and mouth style.

  • The tongue is made into an ellipse, rotated at the corresponding angle and pressed, and then a part of it is covered by the mouth.



    The third frog’s tongue decomposition display.png
  • <div class="frog" id="frog-3">
            <div class="body">
              <div class="mouth">
                <!--存放舌头样式的容器-->
                <div class="toungue"></div>
              </div>
            </div>
            <div class="eyes">
              <!--左眼添加wink的样式,作为左眼眯眼样式-->
              <div class="eye eye-left wink">
                <div class="eye-inner">
                  <div class="pupil">
                    <div class="light"></div>
                  </div>
                </div>
              </div>
              <div class="eye eye-right">
                <div class="eye-inner">
                  <div class="pupil">
                    <div class="light"></div>
                  </div>
                </div>
              </div>
            </div>    
          </div>/*第三只小青蛙的左眼眯眼样式*/.icon .frog .eyes .eye.wink .eye-inner {  background-color: transparent;  width: 17px;  height: 3px;  background-color: #3F6A34;  border-radius: 0;  position: absolute;  top: 15px;  left: 0;  right: 0;  margin: auto;
      -webkit-transform: rotate(21deg);          transform: rotate(21deg);
    }.icon .frog .eyes .eye.wink .eye-inner:before, .icon .frog .eyes .eye.wink .eye-inner:after {  content: &#39;&#39;;  display: block;  width: 17px;  height: 3px;  background-color: #3F6A34;
    }.icon .frog .eyes .eye.wink .eye-inner:before {
      -webkit-transform: rotate(25deg);          transform: rotate(25deg);  position: absolute;  top: -4px;  left: 0;
    }.icon .frog .eyes .eye.wink .eye-inner:after {
      -webkit-transform: rotate(-25deg);          transform: rotate(-25deg);  position: absolute;  top: 4px;  left: 0;
    }.icon .frog .eyes .eye.wink .pupil {  display: none;
    }/*第三只小青蛙的右眼亮光位置*/
    .frog#frog-3 .eye-right .light {  position: absolute;  top: 10%;  left: auto;  right: 10%;
    }/*第三只小青蛙的嘴巴吐舌头样式*/
    .frog#frog-3 .mouth {  width: 25px;  height: 25px;  position: absolute;  top: 5px;  left: 0;  right: 0;
      -webkit-transform: rotate(23deg);          transform: rotate(23deg);
    }
    .frog#frog-3 .mouth:before {  content: "";  display: block;  border-bottom: 3px solid #3F6A34;  width: 100%;  height: 100%;  border-radius: 50%;  background-color: #A3D768;  z-index: 3;  position: absolute;  top: 0px;  left: 0;
    }
    .frog#frog-3 .toungue {  width: 16px;  height: 20px;  background-color: #C71F1C;  border-radius: 30px;  z-index: 2;  position: absolute;  top: 17px;  left: 4px;
      -webkit-transform-origin: center top;          transform-origin: center top;
      -webkit-animation: toungue 2.0s linear 0s infinite;          animation: toungue 2.0s linear 0s infinite;
    }
    @-webkit-keyframes toungue {  0% {
        -webkit-transform: scale(1, 1);transform: scale(1, 1);
      }  40% {
        -webkit-transform: scale(1, 1);transform: scale(1, 1);
      }  75% {
        -webkit-transform: scale(1, 0);transform: scale(1, 0);
      }
    }
    @keyframes toungue {  0% {
        -webkit-transform: scale(1, 1);transform: scale(1, 1);
      }  40% {
        -webkit-transform: scale(1, 1);transform: scale(1, 1);
      }  75% {
        -webkit-transform: scale(1, 0);transform: scale(1, 0);
      }
    }
    .frog#frog-3 .toungue:before {  content: "";  display: block;  width: 2px;  height: 4px;  background-color: #410a09;  position: absolute;  left: 0px;  right: 0px;  bottom: 5px;  margin: auto;

The above is the detailed content of Create a cute frog expression using html. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
HTML超文本标记语言--超在那里?(文档分析)HTML超文本标记语言--超在那里?(文档分析)Aug 02, 2022 pm 06:04 PM

本篇文章带大家了解一下HTML(超文本标记语言),介绍一下HTML的本质,HTML文档的结构、HTML文档的基本标签和图像标签、列表、表格标签、媒体元素、表单,希望对大家有所帮助!

html和css算编程语言吗html和css算编程语言吗Sep 21, 2022 pm 04:09 PM

不算。html是一种用来告知浏览器如何组织页面的标记语言,而CSS是一种用来表现HTML或XML等文件样式的样式设计语言;html和css不具备很强的逻辑性和流程控制功能,缺乏灵活性,且html和css不能按照人类的设计对一件工作进行重复的循环,直至得到让人类满意的答案。

web前端笔试题库之HTML篇web前端笔试题库之HTML篇Apr 21, 2022 am 11:56 AM

总结了一些web前端面试(笔试)题分享给大家,本篇文章就先给大家分享HTML部分的笔试题(附答案),大家可以自己做做,看看能答对几个!

总结HTML中a标签的使用方法及跳转方式总结HTML中a标签的使用方法及跳转方式Aug 05, 2022 am 09:18 AM

本文给大家总结介绍a标签使用方法和跳转方式,希望对大家有所帮助!

HTML5中画布标签是什么HTML5中画布标签是什么May 18, 2022 pm 04:55 PM

HTML5中画布标签是“<canvas>”。canvas标签用于图形的绘制,它只是一个矩形的图形容器,绘制图形必须通过脚本(通常是JavaScript)来完成;开发者可利用多种js方法来在canvas中绘制路径、盒、圆、字符以及添加图像等。

html中document是什么html中document是什么Jun 17, 2022 pm 04:18 PM

在html中,document是文档对象的意思,代表浏览器窗口的文档;document对象是window对象的子对象,所以可通过“window.document”属性对其进行访问,每个载入浏览器的HTML文档都会成为Document对象。

html5废弃了哪个列表标签html5废弃了哪个列表标签Jun 01, 2022 pm 06:32 PM

html5废弃了dir列表标签。dir标签被用来定义目录列表,一般和li标签配合使用,在dir标签对中通过li标签来设置列表项,语法“<dir><li>列表项值</li>...</dir>”。HTML5已经不支持dir,可使用ul标签取代。

Html5怎么取消td边框Html5怎么取消td边框May 18, 2022 pm 06:57 PM

3种取消方法:1、给td元素添加“border:none”无边框样式即可,语法“td{border:none}”。2、给td元素添加“border:0”样式,语法“td{border:0;}”,将td边框的宽度设置为0即可。3、给td元素添加“border:transparent”样式,语法“td{border:transparent;}”,将td边框的颜色设置为透明即可。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.