html跳动的心实现代码

<style>

.box{

width: 200px;

height: 400px;

position: relative;

margin: 30px auto;

transform: all 0.5s;

}

@keyframes moves{

from{box-shadow: 0 0 0 transparent;}

30%{box-shadow: 0 0 50px rgb(236, 57, 57);}

60%{box-shadow: 0 0 80px rgb(241, 97, 97);}

}

.box>div{

animation: moves 1s infinite;

transition-delay: 1s;

}

.box_1{

width: 100px;

height: 100px;

border-radius: 50%;

background: red;

border-bottom: 0;

}

div:nth-child(2){

position: absolute;

top: 0;

left:80px;

}

.box_2{

width: 100px;

height: 130px;

background: red;

transform: rotateZ(57deg);

}

.box>div:nth-child(3){

position: absolute;

top: 2px;

right: 31px;

background-color: red;

border-radius: 50% 50% 0% 0;

box-shadow: 0 0 0 transparent !important;

}

.box>div:last-child{

position: absolute;

top: 4px;

left: 12px;

transform: rotateZ(122deg);

border-radius: 0 0% 50% 50%;

}

/* .box:hover>div{

box-shadow: 0 0 10px rgb(241, 97, 97);

} */

</style>

</head>

<body>

<div class="box">

<div class="box_1"></div>

<div class="box_1"></div>

<div class="box_2"></div>

<div class="box_2"></div>

</div>

</body>

</html>

原文地址:https://www.cnblogs.com/zhuxinpeng-looking/p/10597300.html

时间: 2024-11-08 13:43:07

html跳动的心实现代码的相关文章

CSS实现跳动的心形图案?

原理: 1. 创建1个div <div class="heart"></div> .heart { position:relative; width: 100px; height: 100px; margin: 100px auto; background-color: tomato; } 2. 用伪元素:before和:after,画出一个粉色的圆和一个黄色的圆,并将圆心分别定位在正方形的左边和上边. 注意: 设置:before和:after时必须设置其con

Yii2-核心框架代码规范

1.概述 简单说,我们使用PSR-2兼容规范,所以应用于PSR-2的一切对我们的代码也同样适用. 文件必须使用 <?php 或 <?= 标签. 文件未尾应该有一个新行. PHP代码文件必须只能使用无BOM的UTF-8. 代码缩进必须使用4个空格,而不是tab按键. 类名必须使用大驼峰式(首字母大写)声明. 类中常量必须使用全大写带下划线方式声明. 方法名称必须使用小驼峰式(首字母小写)声明 . 属性名称必须使用小驼峰式(首字母小写)声明. 如果是私有属性名,必须使用下划线开始. 使用elsei

一颗跳动的心(css3)

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>一颗跳动的心</title> <style type="text/css"> *{ margin:0 ; padding:0; } body{ background:#1a1c24; } /* 盒子 */ #heart,#

【ShaderToy】跳动的心??

写在前面 注:如果你还不了解ShaderToy,请看开篇. 作为ShaderToy系列的第一篇,我们先来点简单的.下面是效果: (CSDN目前不能传gif文件了,暂时空缺,可以看下面的原shader效果,是一样的) 原Shader地址:https://www.shadertoy.com/view/XsfGRn 代码 我们使用了之前的开篇中的基础模板.这里仅仅给出main函数的代码: vec4 main(vec2 fragCoord) { vec2 p = (2.0*fragCoord.xy-iR

css3跳动的心制作

<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>心的跳动</title> <link rel="stylesheet" type="text/css" href="css/love.css"> <script src="j

跳动的心 有阴影 跳动

<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>心的跳动</title> <style type="text/css"> *{ margin: 0; padding: 0; } body { width: 100%; background-color: #000; } .all

在动画视图上添加图片实现 &quot;跳动的心&quot;

#import "UIViewAnimationController.h" @interface UIViewAnimationController (){    UIView *animationView;    } @end @implementation UIViewAnimationController - (void)viewDidLoad {    [super viewDidLoad];        self.view.backgroundColor = [UIColo

跳动的心

<html> 要链接<script src="js/jquery.min.js"></script>文件 <div class="heart"> <div class="left-top"></div>   <div class="right-top"></div> <div class="down">

边框圆角练习--跳动的心

绝对定位后的居中 margin-left: -125px; 技巧: 在企业开发中推荐使用如下的方式让元素居中 水平居中: left:50%; transform: translateX(-50%); 垂直居中: top:50%; transform: translateY(-50%); .all{ width: 450px; height: 400px; box-sizing: border-box; margin: 200px auto; position: relative; } .left