Back to Shopify Liquid
Limited Stock 3
Shopify Liquid

Limited Stock 3

Drop this Shopify Liquid snippet into your theme to add the limited stock 3 block. Copy the code below, paste it into your theme files, save and you're done.

106 lines · 2.6 KB
Shopify Liquid
1<!DOCTYPE html>
2<html lang="en">
3<head>
4<meta charset="UTF-8">
5<meta name="viewport" content="width=device-width, initial-scale=1.0">
6<title>Rotating Warnings</title>
7<style>
8 body.unique-body-Xyz789 {
9 display: flex;
10 justify-content: center;
11 align-items: center;
12 height: 100vh;
13 margin: 0;
14 background-color: #fff;
15 }
16
17 .unique-warning-container-Abc123 {
18 position: relative;
19 width: 100%;
20 max-width: 600px; /* Genişliği maksimum yap */
21 height: 40px; /* Yüksekliği azalt */
22 overflow: hidden;
23 }
24
25 .unique-warning-Def456 {
26 position: absolute;
27 width: 100%;
28 height: 100%;
29 display: flex;
30 align-items: center;
31 border-radius: 10px;
32 color: #333;
33 font-size: 13px;
34 padding: 10px;
35 border: 1px solid #E2E2E2;
36 box-sizing: border-box;
37 opacity: 0;
38 transition: opacity 0.5s ease-in-out; /* Animasyonun süresini ve şiddetini azalt */
39 }
40
41 .unique-warning-container-Abc123 .unique-warning-Def456:nth-child(1) {
42 animation: unique-showWarning-Ghi789 8s linear infinite 0s;
43 }
44
45 .unique-warning-container-Abc123 .unique-warning-Def456:nth-child(2) {
46 animation: unique-showWarning-Ghi789 8s linear infinite 4s;
47 }
48
49 @keyframes unique-showWarning-Ghi789 {
50 0%, 50% {
51 opacity: 1;
52 }
53 50.01%, 100% {
54 opacity: 0;
55 }
56 }
57
58 .unique-red-warning-Jkl012 {
59 background-color: #ffe6e6;
60 }
61
62 .unique-green-warning-Mno345 {
63 background-color: #f0fff0;
64 }
65
66 @keyframes unique-glowRed-Pqr678 {
67 0% { box-shadow: 0 0 3px 0 rgba(255, 0, 0, 0.7); }
68 50% { box-shadow: 0 0 8px 3px rgba(255, 0, 0, 0.5); }
69 100% { box-shadow: 0 0 3px 0 rgba(255, 0, 0, 0.7); }
70 }
71
72 .unique-circleRed-Stu901 {
73 width: 10px;
74 height: 10px;
75 border-radius: 50%;
76 background-color: #8b0000;
77 display: inline-block;
78 animation: unique-glowRed-Pqr678 1s infinite ease-in-out;
79 }
80
81 .unique-tickIcon-Vwx234 {
82 width: 14px;
83 height: 14px;
84 fill: #006400;
85 margin-right: 5px; /* Metni ikona yaklaştır */
86 }
87</style>
88</head>
89<body class="unique-body-Xyz789">
90
91<div class="unique-warning-container-Abc123">
92 <div class="unique-warning-Def456 unique-red-warning-Jkl012">
93 <div class="unique-circleRed-Stu901"></div>
94 <span style="margin-left: 10px;">Hurry up! Only a few items left!</span>
95 </div>
96 <div class="unique-warning-Def456 unique-green-warning-Mno345">
97 <svg class="unique-tickIcon-Vwx234" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
98 <path d="M9 16.2l-4.2-4.2-1.4 1.4 5.6 5.6 12-12-1.4-1.4z"/>
99 </svg>
100 <span>30-day money back guarantee, no questions.</span>
101 </div>
102</div>
103
104</body>
105</html>

Related snippets