oeuf de paques en fin de com ville

This commit is contained in:
thaaoblues 2023-06-13 17:22:42 +02:00
parent 7da1398e4f
commit aa88a7bfaa
3 changed files with 30 additions and 1 deletions

View file

@ -113,4 +113,30 @@ th {
td.title {
color: red;
}
}
@keyframes rotate-zoom {
0% {
transform: rotate(0deg) scale(1);
}
25%{
transform: rotate(90deg) scale(1.5);
}
50% {
transform: rotate(180deg) scale(2);
}
75%{
transform: rotate(270deg) scale(1.5);
}
100% {
transform: rotate(360deg) scale(1);
}
}
.prez-ep {
animation-name: rotate-zoom;
animation-duration: 2s; /* Adjust the duration as desired */
animation-timing-function: linear;
animation-iteration-count: infinite;
width: 30%;
height: 30%;
}

BIN
assets/img/prez.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 517 KiB

View file

@ -155,6 +155,9 @@ if(isset($_GET["ekip"])){
<div class="zone_txt">
<h2>BRAVO <?=$result['nom']?> VOUS AVEZ FINI !!!!</h2>
<h2><br> Temps : <?=$heures?>h <?=$minutes?>min <?=$secondes?>s</h2>
<img src="assets/img/prez.png" class="prez-ep" id="prez-ep">
</div>
<?php