SHX-Theme/snippets/shx-landingpage.liquid

76 lines
1.6 KiB
Plaintext

{% assign videoURL = "https://cdn.shopify.com/videos/c/o/v/37f714939aef4036aa9fc14f7c18ab46.mp4" %}
<style>
.shx-landingPage__video__element {
width: 100%;
height: 100%;
object-fit: cover;
}
.shx-landingPage__video {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}
.shx-landingPage__video__content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
color: white;
}
.shx-landingPage__video__title {
font-size: 4rem;
margin-bottom: 1rem;
color: white;
}
.shx-landingPage__video__description {
font-size: 1rem;
margin-bottom: 1rem;
}
.shx-landingPage__video__cta {
display: inline-block;
padding: 0.5rem 1rem;
background-color: white;
color: black;
text-decoration: none;
border-radius: 5px;
}
.shx-landingPage__video__cta:hover {
background-color: black;
color: white;
}
.shx-landingPage__video__cta:active {
transform: scale(0.95);
}
</style>
<div class="landingPage">
<div class="shx-landingPage__video">
<video
class="shx-landingPage__video__element"
autoplay
loop
muted
playsinline>
<source src="{{ videoURL }}" type="video/mp4">
Your browser does not support the video tag.
</video>
<div class="shx-landingPage__video__content">
<h1 class="shx-landingPage__video__title">Entdecke magische Kreationen</h1>
<a href="#" class="shx-landingPage__video__cta">Jetzt Einkaufen</a>
</div>
</div>
</div>