Hiệu ứng tab hình ( bài 1) – Tab Gallery trong wordpres

Làm việc với hình ảnh , nhất là các web có show Hình , việc tạo hiệu ứng rất quan trọng nó làm cho viẹc lướt web xem hình không nhàm chán , mình sẽ giới thiệu một số hiệu ứng hình cho các bạn ứng dụng trong wordpres hiệu quả hơn

bài 1 Hiệu ứng tab hình – Tab Gallery trong wordpres – dừng hình làm tab rất đẹp bên dưới

Hiệu ứng tab hình – Tab Gallery trong wordpres

như tab bên dưới

/* The grid: Four equal columns that floats next to each other */
.row>div:not(.col):not([class^=col-]) {
width: 25% !important;
}
.column {
float: left;
width: 25%;
padding: 10px;
}

/* Style the images inside the grid */
.column img {
opacity: 0.8;
cursor: pointer;
}

.column img:hover {
opacity: 1;
}

/* Clear floats after the columns */
.row:after {
content: “”;
display: table;
clear: both;
}

/* The expanding image container */
.container {
position: relative;
display: none;
}

/* Expanding image text */
#imgtext {
position: absolute;
bottom: 15px;
left: 15px;
color: white;
font-size: 20px;
}

/* Closable button inside the expanded image */
.closebtn {
position: absolute;
top: 10px;
right: 15px;
color: white;
font-size: 35px;
cursor: pointer;
}

Tabbed Image Gallery

Click on the images below:

×

function myFunction(imgs) {
var expandImg = document.getElementById(“expandedImg”);
var imgText = document.getElementById(“imgtext”);
expandImg.src = imgs.src;
imgText.innerHTML = imgs.alt;
expandImg.parentElement.style.display = “block”;
}

sau đây là các bước làm tab Hình đẹp nhé !
 

Bước 1) thêm code HTML – Hiệu ứng tab hình :

Bước  2) thêm CSS – Hiệu ứng tab hình  :

Bước 3)  Thêm code JavaScript – Hiệu ứng tab hình  :

Hi vọng sau khi xem qua bài Hiệu ứng tab hình  bạn có thể tạo cho mình tab đẹp bằng hình ảnh nhé

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

Điểm 5/5 – ( Có 25 bình chọn)

Comments

No comments yet. Why don’t you start the discussion?

Leave a Reply

Your email address will not be published. Required fields are marked *