مجموعة شاملة لتصاميم العناوين باستخدام CSS
1 تأثير قوس قزح المتحرك
عنوانك هنا
.spe {
font-family: 'Arial', sans-serif;
font-size: 20px;
text-align: center;
color: transparent;
background: linear-gradient(90deg, #ff4d4d, #f9cb28, #06a3a3, #8e2de2);
-webkit-background-clip: text;
background-clip: text;
text-shadow: 0 2px 4px rgba(0,0,0,0.1);
position: relative;
padding: 15px 0;
margin: 20px 0;
letter-spacing: 2px;
animation: rainbow 8s ease infinite;
background-size: 400% 400%;
}
.spe::before,
.spe::after {
content: "";
position: absolute;
height: 3px;
width: 30%;
background: linear-gradient(90deg, transparent, #06a3a3, transparent);
left: 50%;
transform: translateX(-50%);
}
.spe::before {
top: 0;
}
.spe::after {
bottom: 0;
}
@keyframes rainbow {
0% { background-position: 0% 50% }
50% { background-position: 100% 50% }
100% { background-position: 0% 50% }
}
2 تصميم الشريط المائل
عنوانك هنا
.f11 {
margin: 0 0 20px 0;
padding: 15px 30px;
position: relative;
font-family: 'Tajawal', sans-serif;
display: block;
font-weight: 900;
color: white;
width: 100%;
letter-spacing: 2px;
text-transform: uppercase;
background: linear-gradient(135deg, #434343 0%, #000000 100%);
border-radius: 0;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
transition: all 0.4s ease;
border-left: 4px solid #06a3a3;
}
.f11:hover {
transform: scale(1.02);
clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
border-left: 8px solid #06a3a3;
}
3 التأثير الكوني
عنوانك هنا
.cosmic {
font-family: 'Tajawal', sans-serif;
font-size: 1.4rem;
font-weight: 800;
color: transparent;
background:
linear-gradient(90deg, #8e44ad, #3498db, #8e44ad),
url('data:image/svg+xml;utf8,');
-webkit-background-clip: text;
background-clip: text;
background-size: 200% auto, auto;
padding: 15px 30px;
display: inline-block;
margin: 15px 0;
position: relative;
animation: cosmic-glow 4s linear infinite;
text-shadow: 0 0 10px rgba(142, 68, 173, 0.5);
}
@keyframes cosmic-glow {
0% { background-position: 0% center; }
100% { background-position: 200% center; }
}
.cosmic::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(90deg, transparent, #3498db, transparent);
animation: cosmic-line 3s linear infinite;
}
@keyframes cosmic-line {
0% { transform: scaleX(0); opacity: 0; }
50% { transform: scaleX(1); opacity: 1; }
100% { transform: scaleX(0); opacity: 0; }
}
4 التأثير الورقي المائل
عنوانك هنا
.f12 {
font-family: 'Tajawal', sans-serif;
font-size: 1.5rem;
color: #3e2723;
background: #efebe9;
padding: 15px 40px 15px 30px;
display: inline-block;
margin: 15px 0;
position: relative;
box-shadow:
3px 3px 5px rgba(0,0,0,0.1),
inset 0 0 20px rgba(0,0,0,0.05);
transform: rotate(-1deg);
transition: all 0.3s ease;
}
.f12::before {
content: "";
position: absolute;
top: 0;
right: 0;
border-width: 0 20px 20px 0;
border-style: solid;
border-color: transparent #d7ccc8 transparent transparent;
box-shadow: -2px 2px 3px rgba(0,0,0,0.1);
}
.f12::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 10px;
background: repeating-linear-gradient(
-45deg,
#efebe9,
#efebe9 5px,
#d7ccc8 5px,
#d7ccc8 10px
);
}
.f12:hover {
transform: rotate(0deg) translateY(-5px);
box-shadow:
5px 5px 10px rgba(0,0,0,0.15),
inset 0 0 20px rgba(0,0,0,0.08);
}
5 تأثير الخط المتحرك
عنوانك هنا
.f13 {
margin: 0 11px;
padding: 0 37px 10px 0;
position: relative;
font-family: 'Roboto', sans-serif;
display: inline-block;
font-weight: 800;
color: #2a2a2a;
width: 100%;
border-bottom: 1px solid #e2e4e7;
letter-spacing: 1px;
transform: skewX(-10deg);
transition: all 0.3s ease;
}
.f13::after {
content: "";
position: absolute;
bottom: -1px;
left: 0;
width: 0;
height: 3px;
background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
transition: width 0.5s ease;
}
.f13:hover {
color: #ff6b6b;
transform: skewX(-5deg);
}
.f13:hover::after {
width: 100%;
}
6 تأثير النقاط المتحركة
عنوانك هنا
.f14 {
margin: 0 11px;
padding: 0 37px 15px 0;
position: relative;
font-family: 'Roboto', sans-serif;
display: inline-block;
font-weight: 800;
color: #333;
width: 100%;
border-bottom: 1px dotted #e2e4e7;
letter-spacing: 1px;
background:
linear-gradient(90deg, transparent 95%, #4ecdc4 100%);
background-size: 200% 100%;
transition: all 0.6s ease;
}
.f14:hover {
background-position: -100% 0;
border-bottom-color: #4ecdc4;
padding-right: 45px;
}
.f14::before {
content: "\25E6\25E6\25E6";
position: absolute;
left: 15px;
top: 50%;
transform: translateY(-50%);
color: #4ecdc4;
opacity: 0;
transition: all 0.3s ease;
}
.f14:hover::before {
opacity: 1;
left: 25px;
}
7 تأثير الظل المتحرك
عنوانك هنا
.f15 {
margin: 0 11px;
padding: 0 37px 15px 0;
position: relative;
font-family: 'Roboto', sans-serif;
display: inline-block;
font-weight: 800;
color: #3a3a3a;
width: 100%;
border-bottom: 1px solid #e2e4e7;
letter-spacing: 1px;
text-shadow: 2px 2px 0 rgba(0,0,0,0.05);
transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.f15:hover {
transform: translateY(-3px);
text-shadow: 4px 4px 0 rgba(74, 215, 195, 0.1);
border-bottom-color: #4ad7c3;
color: #2a2a2a;
}
.f15::after {
content: "";
position: absolute;
bottom: -2px;
left: 0;
width: 50px;
height: 2px;
background: #4ad7c3;
transition: width 0.4s ease;
}
.f15:hover::after {
width: 100%;
}
8 تأثير النقاط الخلفية
عنوانك هنا
.f16 {
margin: 0 11px;
padding: 0 37px 15px 0;
position: relative;
font-family: 'Roboto', sans-serif;
display: inline-block;
font-weight: 800;
color: #d81b60;
width: 100%;
letter-spacing: 1px;
background-image: url('data:image/svg+xml;utf8,');
border-bottom: 2px dashed #d81b60;
}
9 تأثير الخط المتوهج
عنوانك هنا
.f17 {
margin: 0 11px;
padding: 0 37px 15px 0;
position: relative;
font-family: 'Roboto', sans-serif;
display: inline-block;
font-weight: 800;
color: #000;
width: 100%;
letter-spacing: 1px;
border-bottom: 1px solid #e2e4e7;
transition: all 0.4s ease;
}
.f17::after {
content: "";
position: absolute;
bottom: -1px;
left: 0;
width: 0;
height: 2px;
background: #ff2d75;
transition: width 0.4s ease;
}
.f17:hover::after {
width: 100%;
box-shadow: 0 0 10px #ff2d75;
}
10 تأثير الخط المنحني
عنوانك هنا
.f18 {
margin: 0 11px;
padding: 0 37px 15px 0;
position: relative;
font-family: 'Roboto', sans-serif;
display: inline-block;
font-weight: 800;
color: #6d4c41;
width: 100%;
letter-spacing: 1px;
border-bottom: 1px solid #d7ccc8;
background-image: url('data:image/svg+xml;utf8,');
}
11 تأثير الزر الدائري
عنوانك هنا
.f19 {
font-family: 'Roboto', sans-serif;
font-size: 1rem;
font-weight: 700;
color: #fff;
background: linear-gradient(135deg, #06a3a3, #4ecdc4);
padding: 10px 25px;
margin: 15px 0;
display: inline-block;
border-radius: 30px;
box-shadow: 0 4px 15px rgba(6, 163, 163, 0.3);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.f19::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg,
transparent,
rgba(255,255,255,0.2),
transparent);
transition: all 0.5s ease;
}
.f19:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(6, 163, 163, 0.4);
}
.f19:hover::before {
left: 100%;
}
12 تأثير الزجاج الشفاف
عنوانك هنا
.f20 {
font-family: 'Roboto', sans-serif;
font-size: 1.1rem;
font-weight: 600;
color: #333;
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(8px);
padding: 12px 30px;
margin: 15px 0;
border-radius: 4px;
border: 1px solid rgba(255,255,255,0.3);
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}
.f20:hover {
background: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
13 تأثير الورقة المائلة
عنوانك هنا
.f21 {
font-family: 'Roboto', sans-serif;
font-size: 1.2rem;
font-weight: 600;
color: #424242;
background: #f5f5f5;
padding: 12px 35px 12px 25px;
margin: 20px 0;
display: inline-block;
box-shadow:
3px 3px 5px rgba(0,0,0,0.1),
inset 0 0 15px rgba(0,0,0,0.05);
transform: rotate(-0.5deg);
transition: all 0.3s ease;
position: relative;
border-left: 4px solid #8d6e63;
}
.f21:hover {
transform: rotate(0deg) translateY(-3px);
box-shadow:
5px 5px 10px rgba(0,0,0,0.15),
inset 0 0 20px rgba(0,0,0,0.08);
}
14 تأثير الخط الذهبي
عنوانك هنا
.f22 {
font-family: 'Tajawal', sans-serif;
font-size: 1.3rem;
font-weight: 700;
color: #5d4037;
padding: 15px 40px 15px 0;
margin: 25px 0;
position: relative;
display: inline-block;
width: 100%;
}
.f22::before {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 3px;
background: linear-gradient(90deg, #f9cb28, #ffab00);
transition: width 0.4s ease;
}
.f22:hover::before {
width: 100%;
}
15 تأثير النقاط المتحركة
عنوانك هنا
.f30{
font-family: 'Roboto Condensed', sans-serif;
font-size: 1.1rem;
font-weight: 700;
color: #2c3e50;
padding: 10px 35px 10px 0;
margin: 15px 0;
position: relative;
border-bottom: 1px dashed #e0e0e0;
transition: all 0.3s ease;
}
.f30::after {
content: "\25E6\25E6\25E6";
position: absolute;
left: 15px;
color: #06a3a3;
opacity: 0;
transition: all 0.3s ease;
}
.f30:hover {
padding-right: 45px;
color: #06a3a3;
}
.f30:hover::after {
opacity: 1;
left: 20px;
}
16 تأثير الظل الطائر
عنوانك هنا
.f31{
font-family: 'Roboto', sans-serif;
font-size: 1.2rem;
font-weight: 800;
color: #3a3a3a;
padding: 12px 30px 12px 0;
margin: 20px 0;
display: inline-block;
width: 100%;
border-bottom: 2px solid #f0f0f0;
transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
position: relative;
}
.f31:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
border-bottom-color: #4ecdc4;
}
17 تأثير قوس قزح الكبير
عنوانك هنا
.f32 {
font-family: 'Tajawal', sans-serif;
font-size: 2.3rem;
text-align: center;
color: transparent;
background: linear-gradient(90deg,
#ff4d4d, #f9cb28, #06a3a3, #8e2de2);
-webkit-background-clip: text;
background-clip: text;
padding: 20px 0;
margin: 30px 0;
position: relative;
animation: rainbow-flow 8s linear infinite;
background-size: 300% 100%;
}
@keyframes rainbow-flow {
0% { background-position: 0% 50%; }
100% { background-position: 100% 50%; }
}
18 تأثير خط تحت العنوان
عنوانك هنا
.spe {
.main-title {
color: #2c3e50;
text-align: center;
margin-bottom: 30px;
padding-bottom: 15px;
border-bottom: 2px solid #3498db;
}