Trang chủChuyên mục

Kiến thức Wordpress

Bài viết

Hiệu ứng chiếu sáng (shine effect) (hiệu ứng ánh sáng lướt qua) khi hover vào hình ảnh

10/01/2025 admin Cập nhật: 04/12/2025
Dán CSS vào .product-small .box-image:hover::before{ -webkit-animation:shine .75s;animation:shine .75s } @-webkit-keyframes shine{ 100%{left:125%} } @keyframes shine{ 100%{left:125%} } .product-small .box-image::before{ position:absolute; top:0; left:-75%; z-index:2; display:block; content:''; width:50%; height:100%; background:-webkit-linear-gradient(left,rgba(255,255,255,0)...
Đọc tiếp
Bài viết

Xóa /category/ khỏi URL

04/01/2025 admin Cập nhật: 04/12/2025
Thêm đoạn code sau vào functions.php // Xóa /category/ khỏi URL function remove_category_base($string, $term) {     if ($term->taxonomy == 'category') {         $string =...
Đọc tiếp
Bài viết

Code chạy xe máy qua lại

02/01/2025 admin Cập nhật: 04/12/2025
Dán <div class="theme-newyear">  <img src="//webdy.vn/public/files/uploads/2024/03/motorbike.png" width="70" height="58" class="motorbike">     </div> <style> .theme-newyear .motorbike {     left: calc(100% - 80px);     max-width: 70px;     position: absolute;...
Đọc tiếp
×