جميع التشكيلات
ستجد كُل ماتبحث عنه
/* Apply a 3D effect and shadow when hovering */
.products-grid .product-item {
transition: transform 0.3s, box-shadow 0.3s;
}
.products-grid .product-item:hover {
transform: perspective(500px) rotateY(10deg) scale(1.05);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
عرض خاص في متجرنا
/* تحديد شريط الإعلان وتخصيص الأنماط */
.announcement-bar {
background-color: #4a90e2;
color: #fff;
text-align: left;
padding: 10px;
position: fixed;
top: 0;
left: 0;
right: 0;
box-shadow: 0px 5px 5px rgba(0, 0, 0, 1); /* ضل أسود */
overflow: hidden;
}
.moving-text {
white-space: nowrap;
animation: slide 10s linear infinite; /* إضافة حركة متحركة */
font-size: 24px;
text-transform: uppercase;
animation-direction: alternate; /* تغيير اتجاه الحركة */
text-shadow: 2px 2px 2px #000; /* ضل أسود للنص */
}
/* إنشاء حركة متحكمة */
@keyframes slide {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(-100%);
}
}