Bläddra i källkod

Imagen en movimiento

Celestino Rey 4 månader sedan
förälder
incheckning
ec70c75d9c
4 ändrade filer med 15 tillägg och 1 borttagningar
  1. BIN
      .DS_Store
  2. 1 1
      Contenido/index.html
  3. BIN
      Contenido/stamp.png
  4. 14 0
      Contenido/styles.css

BIN
.DS_Store


+ 1 - 1
Contenido/index.html

@@ -87,7 +87,7 @@
                         </ul>
                     </div>
                     <div class="about-image">
-                        <img src="https://via.placeholder.com/500x400/e5e7eb/6b7280?text=Nuestro+Equipo" alt="Nuestro equipo">
+                        <img src="stamp.png" alt="Nuestro equipo" class="rotating-image">
                     </div>
                 </div>
             </div>

BIN
Contenido/stamp.png


+ 14 - 0
Contenido/styles.css

@@ -275,6 +275,20 @@ body {
     box-shadow: 0 10px 30px rgba(0,0,0,0.1);
 }
 
+.rotating-image {
+    animation: rotate 10s linear infinite;
+    box-shadow: none;
+}
+
+@keyframes rotate {
+    from {
+        transform: rotate(0deg);
+    }
+    to {
+        transform: rotate(360deg);
+    }
+}
+
 /* Services Section */
 .services-grid {
     display: grid;