Hiệu ứng xoay ảnh đẹp cho diễn đàn Xenforo

  • Thread starter Thread starter PVS
  • Ngày gửi Ngày gửi

PVS

Super Moderator
Thành viên BQT
Để mỗi khi chi chuột vào hình ảnh có những hiệu ứng đẹp mình xin giới thiệu tới các bạn một hiệu ứng sau

Mở template bb_code_base.css tìm
Mã:
.bbCodeImage{
max-width:100%
}

thêm vào dưới nó:

Hiệu ứng 1:
Mã:
.bbCodeImage{
-moz-transition: all .5s ease-in-out;
-webkit-transition: all .5s ease-in-out;
}
.bbCodeImage:hover{
moz-transform: scale(1.2) rotate(0deg);
-webkit-transform: scale(1.2) rotate(0deg);
position: relative;}

Hiệu ứng 2:
Mã:
.bbCodeImage{
-moz-transition: all .5s ease-in-out;
-webkit-transition: all .5s ease-in-out;
}
.bbCodeImage:hover{
moz-transform: scale(1.1) rotate(90deg);
-webkit-transform: scale(1.1) rotate(90deg);
position: relative;}

Hiệu ứng 3:
Mã:
.bbCodeImage{
-moz-transition: all .5s ease-in-out;
-webkit-transition: all .5s ease-in-out;
}
.bbCodeImage:hover{
moz-transform: scale(1.1) rotate(180deg);
-webkit-transform: scale(1.1) rotate(180deg);
position: relative;}

Hiệu ứng 4:
Mã:
.bbCodeImage{
-moz-transition: all .5s ease-in-out;
-webkit-transition: all .5s ease-in-out;
}
.bbCodeImage:hover{
moz-transform: scale(1.1) rotate(360deg);
-webkit-transform: scale(1.1) rotate(360deg);
position: relative;}

Chúc các bạn thành công.


Nguồn: Online​
 
Back
Top