da
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
#turgur{
width: 100px;
height: 100px;
background-color: aliceblue;
font-size: large;
animation: box 2s cubic-bezier(0.89, 0.03, 0.58, 1);
border: 2px solid black;
animation-iteration-count: infinite;
text-align: center;
}
@keyframes box{
0% {width: 200px; height: 200px;}
25% {width: 200px; height: 200px;}
50% {width: 400px; height: 400px;}
75% {width: 200px; height: 200px;}
100% {width: 200px; height: 200px;}
}
</style>
</head>
<body>
<div id="turgur">TURGURUTAY HAZRETLERİ 🏴</div>
</body>
</html>
Yorumlar
Yorum Gönder