超萌!HTMLCSS:打造趣味动画卡通 dog

news2024/11/7 14:13:25

这段HTML与CSS代码实现了一个超萌的动画卡通dog。
在这里插入图片描述

HTML

<div class="dog">
  <div class="dog-body">
      <div class="dog-tail">
          <div class="dog-tail">
              <div class="dog-tail">
                  <div class="dog-tail">
                      <div class="dog-tail">
                          <div class="dog-tail">
                              <div class="dog-tail">
                                  <div class="dog-tail"></div>
                              </div>
                          </div>
                      </div>
                  </div>
              </div>
          </div>
      </div>
  </div>
  <div class="dog-torso"></div>
  <div class="dog-head">
      <div class="dog-ears">
          <div class="dog-ear"></div>
          <div class="dog-ear"></div>
      </div>
      <div class="dog-eyes">
          <div class="dog-eye"></div>
          <div class="dog-eye"></div>
      </div>
      <div class="dog-muzzle">
          <div class="dog-tongue"></div>
      </div>
  </div>
</div>
<div class="ball" tabindex="0"></div>

CSS

.ball {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-top: 4rem;
    z-index: 0;
}

.ball:after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    box-shadow: inset 0 -8px 0 0 rgba(0, 0, 0, 0.2);
    background: #6e64f0;
    z-index: 1;
}

.ball:focus {
    outline: none;
}

.ball:focus:after {
    -webkit-animation: bounce 400ms infinite alternate;
    animation: bounce 400ms infinite alternate;
}

@-webkit-keyframes bounce {
    from {
        transform: scale(2);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    to {
        transform: scale(0.8);
        -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
        animation-timing-function: cubic-bezier(0, 0, 0, 1);
    }
}

@keyframes bounce {
    from {
        transform: scale(2);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    to {
        transform: scale(0.8);
        -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
        animation-timing-function: cubic-bezier(0, 0, 0, 1);
    }
}

@-webkit-keyframes bounce-shadow {
    from {
        transform: scale(2.5, 2.6) translateY(-50%);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    to {
        transform: scale(0.5) translateY(0);
        -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
        animation-timing-function: cubic-bezier(0, 0, 0, 1);
    }
}

@keyframes bounce-shadow {
    from {
        transform: scale(2.5, 2.6) translateY(-50%);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    to {
        transform: scale(0.5) translateY(0);
        -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
        animation-timing-function: cubic-bezier(0, 0, 0, 1);
    }
}

.ball:focus:before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    -webkit-animation: bounce-shadow 400ms infinite alternate;
    animation: bounce-shadow 400ms infinite alternate;
    z-index: -10;
}

.dog {
    width: 100px;
    height: 100px;
    z-index: 1;
}

.dog:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    transform: translateY(-30%) scale(1.5);
}

.dog * {
    position: absolute;
}

.dog-body {
    top: -50%;
    -webkit-animation: dog-body 200ms ease-in-out infinite alternate;
    animation: dog-body 200ms ease-in-out infinite alternate;
}

.dog-body:before {
    content: "";
    position: absolute;
    bottom: 90%;
    right: 50%;
    width: 90%;
    height: 90%;
    border-top-left-radius: 100%;
    border-bottom-left-radius: 10%;
    border-top-right-radius: 10%;
    background: rgba(255, 255, 255, 0.4);
    transform-origin: right bottom;
    -webkit-animation: dog-tail-blur 200ms 33.3333333333ms ease-in-out infinite alternate both;
    animation: dog-tail-blur 200ms 33.3333333333ms ease-in-out infinite alternate both;
}

@-webkit-keyframes dog-tail-blur {
    from {
        transform: rotate(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    to {
        transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes dog-tail-blur {
    from {
        transform: rotate(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    to {
        transform: rotate(90deg);
        opacity: 0;
    }
}

@-webkit-keyframes dog-body {
    from {
        transform: translateX(-10%);
    }

    to {
        transform: translateX(10%);
    }
}

@keyframes dog-body {
    from {
        transform: translateX(-10%);
    }

    to {
        transform: translateX(10%);
    }
}

.dog-head {
    -webkit-animation: dog-head 1800ms cubic-bezier(0.11, 0.79, 0, 0.99) infinite;
    animation: dog-head 1800ms cubic-bezier(0.11, 0.79, 0, 0.99) infinite;
}

@-webkit-keyframes dog-head {

    from,
    to {
        transform: rotate(45deg);
    }

    33.3% {
        transform: rotate(-45deg);
    }

    66.6% {
        transform: rotate(0);
    }
}

@keyframes dog-head {

    from,
    to {
        transform: rotate(45deg);
    }

    33.3% {
        transform: rotate(-45deg);
    }

    66.6% {
        transform: rotate(0);
    }
}

.dog-torso {
    top: -20%;
    animation: dog-torso 200ms ease-in-out infinite alternate-reverse;
}

@-webkit-keyframes dog-torso {
    from {
        transform: translateX(-5%);
    }

    to {
        transform: translateX(5%);
    }
}

@keyframes dog-torso {
    from {
        transform: translateX(-5%);
    }

    to {
        transform: translateX(5%);
    }
}

.dog-eyes {
    width: 60%;
    top: 55%;
    left: 20%;
    z-index: 1;
}

.dog-eyes:before {
    content: "";
    display: block;
    height: 40px;
    width: 40px;
    border-radius: 40px;
    position: absolute;
    background: orange;
    top: -10px;
    left: -10px;
    z-index: 0;
    border: 4px solid white;
    border-left-width: 0;
    border-bottom-width: 0;
    border-top-width: 0;
    transform: rotate(-45deg);
}

.dog-eye {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #000;
    z-index: 1;
    -webkit-animation: dog-eye 1800ms infinite;
    animation: dog-eye 1800ms infinite;
}

@-webkit-keyframes dog-eye {

    from,
    to {
        -webkit-animation-timing-function: step-end;
        animation-timing-function: step-end;
        opacity: 1;
    }

    50%,
    55% {
        -webkit-animation-timing-function: step-start;
        animation-timing-function: step-start;
        opacity: 0;
    }
}

@keyframes dog-eye {

    from,
    to {
        -webkit-animation-timing-function: step-end;
        animation-timing-function: step-end;
        opacity: 1;
    }

    50%,
    55% {
        -webkit-animation-timing-function: step-start;
        animation-timing-function: step-start;
        opacity: 0;
    }
}

.dog-eye:first-child {
    left: 0;
}

.dog-eye:last-child {
    right: 0;
}

.dog-muzzle {
    width: 60%;
    left: 20%;
    height: 50%;
    border-bottom-left-radius: 100%;
    border-bottom-right-radius: 100%;
    background: white;
    bottom: -15%;
}

.dog-muzzle:before,
.dog-muzzle:after {
    content: "";
    display: block;
    position: absolute;
}

.dog-muzzle:before {
    width: 6px;
    height: 20px;
    bottom: 0;
    left: calc(50% - 3px);
    background: #eaebec;
}

.dog-muzzle:after {
    background: black;
    width: 20px;
    height: 15px;
    bottom: 12px;
    left: calc(50% - 10px);
    border-bottom-left-radius: 60% 60%;
    border-bottom-right-radius: 60% 60%;
    border-top-left-radius: 50% 40%;
    border-top-right-radius: 50% 40%;
}

.dog-tongue {
    width: 40px;
    height: 100%;
    left: calc(50% - 20px);
    z-index: -1;
    transform-origin: center top;
    -webkit-animation: dog-tongue 1800ms -50ms ease-in-out infinite;
    animation: dog-tongue 1800ms -50ms ease-in-out infinite;
}

@-webkit-keyframes dog-tongue {

    from,
    to {
        transform: rotate(0);
    }

    16.6666666667% {
        transform: rotate(30deg);
    }

    33.3333333333%,
    66.6666666667% {
        transform: rotate(0);
    }

    50%,
    83.3333333333% {
        transform: rotate(-20deg);
    }
}

@keyframes dog-tongue {

    from,
    to {
        transform: rotate(0);
    }

    16.6666666667% {
        transform: rotate(30deg);
    }

    33.3333333333%,
    66.6666666667% {
        transform: rotate(0);
    }

    50%,
    83.3333333333% {
        transform: rotate(-20deg);
    }
}

.dog-tongue:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    background: #fd3163;
    -webkit-animation: dog-tongue-inner 100ms ease-in-out infinite alternate;
    animation: dog-tongue-inner 100ms ease-in-out infinite alternate;
}

@-webkit-keyframes dog-tongue-inner {
    from {
        transform: translateY(5%);
    }

    to {
        transform: translateY(22%);
    }
}

@keyframes dog-tongue-inner {
    from {
        transform: translateY(5%);
    }

    to {
        transform: translateY(22%);
    }
}

.dog-ears {
    width: 40%;
    top: 25%;
    left: 30%;
    -webkit-animation: dog-ears 1800ms 100ms ease infinite;
    animation: dog-ears 1800ms 100ms ease infinite;
}

@-webkit-keyframes dog-ears {

    42.3%,
    71.6% {
        transform: rotate(-5deg);
    }

    50.3%,
    79.6% {
        transform: rotate(5deg);
    }

    5% {
        transform: rotate(5deg);
    }

    12% {
        transform: rotate(-5%);
    }

    from,
    33.3%,
    66%,
    to {
        transform: rotate(0);
    }
}

@keyframes dog-ears {

    42.3%,
    71.6% {
        transform: rotate(-5deg);
    }

    50.3%,
    79.6% {
        transform: rotate(5deg);
    }

    5% {
        transform: rotate(5deg);
    }

    12% {
        transform: rotate(-5%);
    }

    from,
    33.3%,
    66%,
    to {
        transform: rotate(0);
    }
}

.dog-ear {
    bottom: -10px;
    height: 50px;
    width: 50px;
    background: #eaebec;
    -webkit-animation-duration: 400ms;
    animation-duration: 400ms;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.dog-ear:first-child {
    border-bottom-left-radius: 80%;
    border-top-right-radius: 80%;
    right: 100%;
    box-shadow: inset -15px 15px 0 1px white;
    transform-origin: right bottom;
    transform: rotate(10deg);
}

.dog-ear:last-child {
    border-top-left-radius: 80%;
    border-bottom-right-radius: 80%;
    left: 100%;
    box-shadow: inset 15px 15px 0 0 white;
    transform-origin: left bottom;
    transform: rotate(-10deg);
}

.dog-tail {
    width: 22px;
    height: 24.2px;
    background: white;
    bottom: 40%;
    border-radius: 11px;
    left: calc(50% - 11px);
    transform-origin: center bottom;
}

.dog-tail .dog-tail {
    -webkit-animation: dog-tail-segment 200ms ease-in-out infinite alternate;
    animation: dog-tail-segment 200ms ease-in-out infinite alternate;
}

@-webkit-keyframes dog-tail-segment {
    from {
        transform: rotate(-10deg);
    }

    to {
        transform: rotate(10deg);
    }
}

@keyframes dog-tail-segment {
    from {
        transform: rotate(-10deg);
    }

    to {
        transform: rotate(10deg);
    }
}

.dog-body>.dog-tail {
    bottom: 90%;
    -webkit-animation: dog-tail 200ms ease-in-out infinite alternate;
    animation: dog-tail 200ms ease-in-out infinite alternate;
}

@-webkit-keyframes dog-tail {
    from {
        transform: rotate(-45deg);
    }

    to {
        transform: rotate(45deg);
    }
}

@keyframes dog-tail {
    from {
        transform: rotate(-45deg);
    }

    to {
        transform: rotate(45deg);
    }
}

.dog-body,
.dog-torso,
.dog-head {
    border-radius: 50%;
    background: white;
    position: absolute;
    height: 100%;
    width: 100%;
}

.dog-body,
.dog-torso {
    box-shadow: inset 0 -15px 0 0 #eaebec;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

html,
body {
    background: #f7d6ff;
    background-image: linear-gradient(to bottom right, #91defe, #99c0f9, #bdb6ec, #d7b3e3, #efb3d5, #f9bccc);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    position: relative;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/2235062.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

Elasticsearch Interval 查询:为什么它们是真正的位置查询,以及如何从 Span 转换

作者&#xff1a;来自 Elastic Mayya Sharipova 解释 span 查询如何成为真正的位置查询以及如何从 span 查询过渡到它们。 长期以来&#xff0c;Span 查询一直是有序和邻近搜索的工具。这些查询对于特定领域&#xff08;例如法律或专利搜索&#xff09;尤其有用。但相对较新的 …

【YOLOv11[基础]】实例分割Seg | 导出ONNX模型 | ONN模型推理以及检测结果可视化 | python

本文将导出YOLO-Seg.pt模型对应的ONNX模型,并且使用ONNX模型推理以及结果的可视化。话不多说,先看看效果图吧!!! 目录 一 导出ONNX模型 二 推理及检测结果可视化 1 代码 2 效果图

手搓AI大模型应用获25万用户,果断辞职创业,结果收入不如摆摊

我开发的 AI 应用有 25 万用户&#xff0c;我感觉要起飞了&#xff0c;于是辞掉工作&#xff0c;准备大干一番。 结果没想到开局即巅峰&#xff0c;突然就完蛋了。 这几天&#xff0c;一个悲催的程序员创业故事在社交网络上流传&#xff0c;引发了人们的深思。 故事的主人公&…

品质生活新选择:看三星AI神黑钻衣物护理机,如何为用户打造精致日常

屠格涅夫曾说&#xff0c;一个人应当好好地安排生活&#xff0c;要使每一刻的时光都有意义。这不仅是对个人生活的深刻洞察&#xff0c;也是对生活品质的不懈追求。实际上&#xff0c;在追求品质生活的道路上&#xff0c;无关乎年龄和阶层&#xff0c;其核心精髓往往潜藏于那些…

ios打包文件上传App Store windows工具

在苹果开发者中心上架IOS APP的时候&#xff0c;在苹果开发者中心不能直接上传打包文件&#xff0c;需要下载mac的xcode这些工具进行上传&#xff0c;但这些工具无法安装在windows或linux电脑上。 这里&#xff0c;我们可以不用xcode这些工具来上传&#xff0c;可以用国内的香…

Nginx(编译)+Lua脚本+Redis 实现自动封禁访问频率过高IP

1.安装lua 1.1安装LuaJIT yum install readline-devel mkdir -p lua-file cd lua-file/ wget http://luajit.org/download/LuaJIT-2.0.5.tar.gz tar -zxvf LuaJIT-2.0.5.tar.gz cd LuaJIT-2.0.5 make && make install PREFIX/usr/local/luajit 1.2配置LuaJIT环境变量…

OA项目 python + vue3

准备工作 创建django项目 在setting.py进行数据库的配置&#xff1a; DATABASES {default: {ENGINE: django.db.backends.mysql,NAME: , #数据库名字USER: , #连接的数据库的用户名PASSWORD: ,HOST: 127.0.0.1,PORT: 3306,} }安装app&#xff1a; rest_framwork: 关闭csrf…

内网渗透-信息收集篇

通过webshell或其他方式拿下一台机器&#xff0c;并且存在内网环境&#xff0c;这个时候就在准备进行内网渗透&#xff0c;而在内网渗透之前需要对本地机器进行信息收集&#xff0c;才能够更好的进行内网渗透。 目录 Windows本地基础信息收集 权限查看 判断域存在 查看防火…

斯坦福团队研发:手机运行的超GPT-4大模型一夜爆红,下载量突破2000次

在大模型落地应用的过程中&#xff0c;端侧 AI 是非常重要的一个方向。 近日&#xff0c;斯坦福大学研究人员推出的 Octopus v2 火了&#xff0c;受到了开发者社区的极大关注&#xff0c;模型一夜下载量超 2k。 20 亿参数的 Octopus v2 可以在智能手机、汽车、个人电脑等端侧…

【OpenAI】使用O1-Preview模型的3种方式,带你快速提升编程效率!

文章目录 一、模型概述1. GPT-3.5&#xff1a;坚实的基础2. GPT-4.0&#xff1a;突破性的升级3. GPT-4o&#xff1a;多模态处理的先锋4. GPT-4o MINI&#xff1a;轻量高效的AI解决方案5. O1-Preview&#xff1a;推理能力的极致提升 二、性能与应用场景对比性能与应用场景深入解…

一文轻松了解AUTOSAR系统开发步骤顺序

目录 往期推荐 AUTOSAR方法论的典型开发步骤顺序 1. 需求分析&#xff08;Requirement Analysis&#xff09; 2. 系统架构设计&#xff08;System Architecture Design&#xff09; 3. 软件组件设计与实现&#xff08;Software Component Design and Implementation&#…

计算机毕业设计Python+图神经网络手机推荐系统 手机价格预测 手机可视化 手机数据分析 手机爬虫 Django Flask Spark 知识图谱

温馨提示&#xff1a;文末有 CSDN 平台官方提供的学长联系方式的名片&#xff01; 温馨提示&#xff1a;文末有 CSDN 平台官方提供的学长联系方式的名片&#xff01; 温馨提示&#xff1a;文末有 CSDN 平台官方提供的学长联系方式的名片&#xff01; 作者简介&#xff1a;Java领…

python基础(1)

声明&#xff1a;学习视频来自b站up主 泷羽sec&#xff0c;如涉及侵权马上删除文章 感谢泷羽sec 团队的教学 视频地址&#xff1a;初识python&#xff0c;环境配置&#xff0c;编程基础以及数据类型_哔哩哔哩_bilibili 一、什么是python Python 是一种高级、解释型、通用编程语…

【大数据学习 | HBASE】hbase的整体架构

hbase的region存储原理图 首先我们看到hbase的组成分为两个大的部分&#xff0c;分别是hmaster和hregionserver&#xff0c;主节点用于协调数据&#xff0c;regionserver用于真正的去管理表&#xff0c;其中regionserver存在多个&#xff0c;他们共同协调管理全有的表&#xff…

软信天成:您企业的数据资产真的安全吗?

您企业的数据资产真的安全吗&#xff1f;当下&#xff0c;数据已成为企业的核心资产&#xff0c;但如何找到、保护这些资产&#xff0c;却是许多企业面临的难题。在此背景下&#xff0c;数据分类分级显得尤为重要。本文将深入探讨数据分类分级&#xff0c;并结合国家标准和行业…

【Android】时区规则库tzdata更新

1 背景&#xff1a; 最近我遇到墨西哥城时区&#xff0c;会出现夏令时&#xff0c;而墨西哥城在2022年底都已经取消夏令时了。 看起来是要更新RK3588上的时区库&#xff0c;我的还是2021a&#xff0c;而现在都已经2024年了 这样能看版本号&#xff1a; cat /system/usr/sha…

国际版JAVA同城打车源码同城服务线下结账系统源码适配PAD支持Android+IOS+H5

架构分析 导航栏&#xff1a;位于界面上方&#xff0c;包含了“数据中心”、“消息”、“用户中心”等主要功能模块的入口&#xff0c;方便用户快速访问。左侧功能模块&#xff1a;在界面的左侧&#xff0c;以列表形式展示了多个功能模块&#xff0c;如“数据中心”、“消息中…

【软服之家-注册安全分析报告-无验证方式导致安全隐患】

前言 由于网站注册入口容易被黑客攻击&#xff0c;存在如下安全问题&#xff1a; 1. 暴力破解密码&#xff0c;造成用户信息泄露 2. 短信盗刷的安全问题&#xff0c;影响业务及导致用户投诉 3. 带来经济损失&#xff0c;尤其是后付费客户&#xff0c;风险巨大&#xff0c;造…

海外营销新利器:米壳AI视频编辑工具全解析

抖知书老师推荐&#xff1a; 随着AI技术的飞速发展&#xff0c;跨境电子商务领域迎来了新的变革。今天&#xff0c;我要向大家介绍一款名为米壳Medio.cool的AI视频营销工具&#xff0c;它专为企业出海而生&#xff0c;助力商品在全球市场上的推广。 米壳Medio.cool以其AI驱动…

常见 HTTP 状态码分类和解释及服务端向前端返回响应时的最完整格式

目前的开发项目&#xff0c;准备明年的国产化&#xff0c;用了十年的自研系统借这个机会全部重写&#xff0c;订立更严格的规范&#xff0c;这里把返回格式及对应状态码记录一下。 常见 HTTP 状态码及解释 HTTP 状态码用于表示客户端请求的响应状态&#xff0c;它们分为五类&a…