Ver ❯
Herramientas SEO
Tamaño del resultado:
668 x 574
×
Cambiar Orientacion
Cambiar tema, Oscuro/Luz
<!doctype html> <html lang="es"> <head> <meta charset="utf-8"> <title>Trucos y efectos de CSS3 - Tutoriales En Linea</title> </head> <body> <style> main { width: 100%; display: flex; flex-direction: column; } main h5 { margin: 30px 30px 15px; } main div.image-slider { position: relative; } main div.image-slider img { display: block; -select: none; max-width: initial; } main div.image-slider > img { width: 100%; } main div.image-slider > div > img { height: 100%; } main div.image-slider > div { width: 50%; position: absolute; top: 0; left: 0; bottom: 0; overflow: hidden; } section:nth-of-type(1) div.image-slider > div { max-width: 100%; resize: horizontal; } section:nth-of-type(1) div.image-slider > div::before { content: ""; width: 12px; height: 12px; position: absolute; right: 0px; bottom: 0px; padding: 5px; cursor: ew-resize; background: linear-gradient(-45deg, #E8E2D6 50%, transparent 0); background-clip: content-box; filter: drop-shadow(0 0 2px rgba(0, 0, 0, .8)); } section:nth-of-type(2) div.image-slider input { width: 100%; position: absolute; left: 0; bottom: 10px; margin: 0; cursor: ew-resize; } input[type=range]::-webkit-slider-thumb { appearance: none; margin-top: -3px; width: 10px; height: 10px; background-color: #E8E2D6; border: none; border-radius: 100%; mix-blend-mode: luminosity; transform: translateY(-1px); box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.18); } input[type=range]::-webkit-slider-runnable-track { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12); width: 100%; height: 6px; cursor: pointer; border-radius: 2px; border: none; background-color: #E8E2D6; } </style> <main ref="main"> <section> <h5>1️⃣ resize solution</h5> <div class="image-slider"> <div> <img src="https://tutorialesenlinea.descargarjuegos.org/s/posts/2019-03/1552234594_trucos_y_efectos_en_css3_colombia-tutoriales_en_linea.webp" alt="Before" /> </div> <img src="https://tutorialesenlinea.descargarjuegos.org/s/posts/2019-03/1552234536_trucos_y_efectos_en_css3_colombia-1-tutoriales_en_linea.webp" alt="After" /> </div> </section> <section> <h5>2️⃣ Range-input control solution</h5> <div ref="slider" class="image-slider range"> <img ref="sliderImg" src="https://tutorialesenlinea.descargarjuegos.org/s/posts/2019-03/1552234594_trucos_y_efectos_en_css3_colombia-tutoriales_en_linea.webp" alt="Before" /> <img src="https://tutorialesenlinea.descargarjuegos.org/s/posts/2019-03/1552234536_trucos_y_efectos_en_css3_colombia-1-tutoriales_en_linea.webp" alt="After" /> </div> </section> </main> <script> export default { mounted() { let div = document.createElement('div'); let range = document.createElement('input'); const { slider, sliderImg } = this.$refs; slider.insertBefore(div, sliderImg); div.appendChild(sliderImg); range.type = 'range'; range.oninput = ({ target: { value } }) => { div.style.width = `${value}%`; }; slider.appendChild(range); } } </script> </body> </html>