1 Star 0 Fork 0

yangjh/datanews

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
animate-2.html 912 Bytes
一键复制 编辑 原始数据 按行查看 历史
yangjh 提交于 2022-04-10 22:58 . 变形及动画
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>animation属性演示</title>
<style>
@keyframes slide {
from {
left: 0;
top: 0;
}
50% {
left: 50%;
top: 50%;
}
70% {
left: 20%;
top: 50%;
}
to {
left: calc(100% - 50px);
top: 0;
}
}
.stage {
background: #ccc;
border-radius: 6px;
height: 150px;
position: relative;
width: 500px;
}
.stage:hover .ball {
animation: slide 1s linear;
}
.ball {
background: #2db34a;
border-radius: 50%;
height: 50px;
position: absolute;
width: 50px;
margin: 0;
}
</style>
</head>
<body>
<div class="stage">
<figure class="ball"></figure>
</div>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yangjh/datanews.git
git@gitee.com:yangjh/datanews.git
yangjh
datanews
datanews
master

搜索帮助