<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>爱您</title>
<style>
* {
padding: 0;
margin: 0;
}
body {
background-color: pink;
}
#frame {
position: relative;
width: 400px;
height: 300px;
margin: 200px auto;
}
.left,
.right {
top: 0;
width: 200px;
height: 200px;
border-radius: 50%;
}
.left {
left: 35px;
}
.right {
right: 35px;
z-index: -1;
}
.bottom {
bottom: 36px;
left: 100px;
width: 200px;
height: 200px;
transform: rotate(45deg);
z-index: -1;
}
.heart {
position: absolute;
box-shadow: 0 0 40px #d5093c;
animation: beat 0.8s ease infinite normal;
background: linear-gradient(-90deg, #f50a45 0%, #d5093c 40%);
}
@keyframes beat {
0% {
transform: scale(1) rotate(225deg);
box-shadow: 0 0 40px #d5093c;
}
50% {
transform: scale(1.1) rotate(225deg);
box-shadow: 0 0 70px #d5093c;
}
100% {
transform: scale(1) rotate(225deg);
box-shadow: 0 0 40px #d5093c;
}
}
@keyframes a {
0% {
transform: scale(1) rotate(0deg);
}
50% {
transform: scale(1.1) rotate(0deg);
}
100% {
transform: scale(1) rotate(0deg);
}
}
#z {
width: 90px;
margin: -23% 30%;
position: absolute;
animation: a 0.8s ease infinite normal;
}
#w {
width: 90px;
margin: -23% 67%;
position: absolute;
animation: a 0.8s ease infinite normal;
}
#con {
width: 20px;
margin: -7% 49.5%;
position: absolute;
animation: a 0.8s ease infinite normal;
}
</style>
</head>
<body>
<div id="frame">
<div class="heart left"></div>
<div class="heart right"></div>
<div class="heart bottom"></div>
</div>
<div id="z">
<h2>胡歌</h2>
</div>
<div id="w">
<h2>未知</h2>
</div>
<!-- <div id="con">
<h1>
字里行间,全都是你。
</h1>
</div> -->
<script type="text/javascript">
var btn = document.getElementById('frame')
// 双击事件
btn.ondblclick = function () {
// window.location.href = 'http://www.kim-shift.cn'
window.open('http://www.kim-shift.cn')
}
</script>
</body>
</html>
用html写一个爱心
转载请注明出处或者链接地址:https://www.qianduange.cn//article/4632.html
相关文章
-
关于npmlink的问题
-
web大学生网页作业成品 响应式网站水果超市7页(html css javascript jquery bootstarp)
-
网页制作课作业基于HTML CSS JavaScript jquery仿慕课网教学培训网站设计实例 企业网站制作
-
(转)echarts 提示框tooltip被遮挡的解决办法
-
javaEE -16(3000字 HTML5 入门级教程)
-
手写rem 与 移动端vant配置rem(2),html5移动web开发
-
HTML5基础认知,网页前端开发前景
-
2023年Vue2前端面试题(全面)
-
HTML5 表单元素和属性学习
-
编程笔记 html5&css&js 057 CSS导航栏
发布的文章
@JsonInclude(JsonInclude.Include.NON_EMPTY)注解用法详解,@JsonInclude、@JsonIgnore两者的区别和递归查找数据的详解
2024-04-20 17:04:37
【网络】协议的定制与Json序列化和反序列化
2024-04-20 17:04:16
PostgreSQL 操作json/jsonb
2024-04-20 17:04:16
Excel转json的两种办法
2024-04-20 17:04:09
Android上基于JSON的数据交互应用,从入门到精通
2024-04-20 17:04:59
json文件和jsonl文件有什么区别?什么情况下适合使用jsonl文件?
2024-04-20 17:04:58
2、在vscode上创建第一个C 多文件编译工程(即如何添加task.json和launch.json文件到工程里面)
2024-04-20 17:04:23
盘点Python中4种读取JSON文件和提取JSON文件内容的方法
2024-04-20 17:04:22
语义分割mask掩码转化为labelme格式(json文件)
2024-04-20 17:04:16
labelme标注的json文件数据转成coco数据集格式(可处理目标框和实例分割)
2024-04-20 17:04:52
大家推荐的文章