AG

American Codes

czwartek, 26 sierpnia 2021

Kręcące się kółko

Napis


KOD DO EFEKTU:
<div class="space">
<div class="kółko" style="background-image:url(ZDJĘCIE KÓŁECZKA);"></div>
<div class="napis">NAPIS</div></div>




<style>
.space {
background: transparent;
height: 300px;
width: 100%;
margin: auto;
padding-top: 1px;
position: relative;}

.kółko {
z-index: 0;
position: absolute;
height: 250px;
width: 250px;
position: absolute;
left: 50%;
margin-left: -125px;
border-radius:100%;
top: 24.5px;
background-size: cover;
-webkit-animation:spin 15s linear infinite;
-moz-animation:spin 15s linear infinite;
animation:spin 15s linear infinite; }
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } } @-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } } @keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

.napis {
text-transform: uppercase;
font-family: Montserrat;
letter-spacing: 10px;
text-align: center;
font-size: 20px;
position: absolute;
z-index: 1;
display: inline-block;
width: 100%;
top: 50%;
height: 150px;
margin-top: -10px;
font-weight: 400;
color: #fff;
text-shadow: 0px 0px 5px #000;}
</style>


<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet">
▪ Wartości, które możesz edytować zaznaczone są kolorem.
▪ Zdjęcie powinno mieć szerokość minimum 300px.

Brak komentarzy:

Prześlij komentarz

Szablon wykonany przez Skipper. Obsługiwane przez usługę Blogger.