今天來製做一個簡單的心跳效果,不須要不少代碼,添加一個盒子,充分利用CSS展示就能夠啦。html
1.首先咱們在頁面添加一個可視化的盒子動畫
2.而後給它先變成一顆心ui
.heart{.net
position:relative;orm
width:100px;htm
height:100px;blog
margin:100px;get
}animation
.heart:after,it
.heart:before{
position:absolute;
width:60px;
height:100%;
background-color:#ff6666;
content:"";
border-radius:50% 50% 0 0;
}
.heart:before{
left:0;
transform:rotate(-52deg);
}
.heart:after{
right:0;
transform:rotate(49deg);
}
3.最後設置一下動畫animation,這裏要說一下animation必須和@keyframes一塊兒用哦,由於動畫沒有動畫幀還怎麼動吖,就像你用筷子用兩根同樣,確定不用一根對叭。
animation:scale 1s linear infinite;
/*名稱 1s 勻速 無限循環*/
咱們讓它水平垂直兩倍縮放
@keyframes scale{ /*動畫幀*/
50%{transform:scale(2)}
}
下面源代碼送上~
外匯經紀商對比http://www.fx61.com/brokerlist
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>心跳效果</title>
<style>
*{margin:0; padding:0;}
li{list-style:none;}
a{text-decoration:none;}
.heart{
position:relative;
width:100px;
height:100px;
margin:100px;
animation:scale 1s linear infinite;
/*名稱 1s 勻速 無限循環*/
}
@keyframes scale{ /*必須和animation一塊兒用 動畫幀*/
50%{transform:scale(2)}
}
.heart:after,
.heart:before{
position:absolute;
width:60px;
height:100%;
background-color:#ff6666;
content:"";
border-radius:50% 50% 0 0;
}
.heart:before{
left:0;
transform:rotate(-52deg);
}
.heart:after{
right:0;
transform:rotate(49deg);
}
</style>
</head>
<!-- 可視化區域-->
<body>
<div class="heart"></div>
</body>
</html>
</p> <p>*{margin:0; padding:0;}</p> <p>li{list-style:none;}</p> <p>a{text-decoration:none;}</p> <p>.heart{</p> <p>position:relative;</p> <p>width:100px;</p> <p>height:100px;</p> <p>margin:100px;</p> <p>animation:scale 1s linear infinite;</p> <p>/*名稱 1s 勻速 無限循環*/</p> <p>}</p> <p>@keyframes scale{ /*必須和animation一塊兒用 動畫幀*/</p> <p>50%{transform:scale(2)}</p> <p>}</p> <p>.heart:after,</p> <p>.heart:before{</p> <p>position:absolute;</p> <p>width:60px;</p> <p>height:100%;</p> <p>background-color:#ff6666;</p> <p>content:"";</p> <p>border-radius:50% 50% 0 0;</p> <p>}</p> <p>.heart:before{</p> <p>left:0;</p> <p>transform:rotate(-52deg);</p> <p>}</p> <p>.heart:after{</p> <p>right:0;</p> <p>transform:rotate(49deg);</p> <p>}</p> <p>
原文連接:https://blog.csdn.net/Marquis_Nicole/article/details/106758567