کد css وردپرس
کد css وردپرس(دکمه با افکت سایه و تغییر رنگ پسزمینه هنگام هاور)
.elementor-button {
background-color: #3498db;
color: #fff;
border-radius: 5px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s, box-shadow 0.3s;
}
.elementor-button:hover {
background-color: #2980b9;
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
}
کد css وردپرس(دکمه با لبههای گرد و افکت بزرگنمایی هنگام هاور)
.elementor-button {
background-color: #e74c3c;
color: #fff;
border-radius: 50px;
transition: transform 0.3s;
}
.elementor-button:hover {
transform: scale(1.05);
}
کد css وردپرس(دکمه با تغییر رنگ متنی و پسزمینه انیمیشنی هنگام هاور)
.elementor-button {
background-color: #2ecc71;
color: #fff;
overflow: hidden;
position: relative;
z-index: 1;
transition: color 0.4s ease-in-out;
}
.elementor-button:before {
content: "";
background: #27ae60;
position: absolute;
top: 100%;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
transition: all 0.4s ease-in-out;
}
.elementor-button:hover {
color: #fff;
}
.elementor-button:hover:before {
top: 0;
}
کد css وردپرس(دکمه با افکت حالت موج کاغذ)
.elementor-button {
background-color: #f39c12;
color: #fff;
border-radius: 0;
transition: background-position 0.3s;
background-size: 200% 100%;
background-image: linear-gradient(to right, #f39c12 50%, #e67e22 50%);
}
.elementor-button:hover {
background-position: -100% 0;
}
کد css وردپرس(دکمه با حاشیه متمایل و انیمیشن هنگام هاور)
.elementor-button {
color: #fff;
border: 2px solid #8e44ad;
padding: 10px 20px;
border-radius: 5px;
position: relative;
overflow: hidden;
transition: color 0.4s;
}
.elementor-button:before {
content: "";
position: absolute;
left: 100%;
bottom: 0;
width: 100%;
height: 100%;
background: #8e44ad;
transition: all 0.4s;
z-index: -1;
}
.elementor-button:hover {
color: #fff;
}
.elementor-button:hover:before {
left: 0;
}