成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

前端實(shí)例練習(xí) - 模態(tài)相冊(cè)

android_c / 946人閱讀

摘要:模態(tài)相冊(cè)代碼儲(chǔ)存在效果預(yù)覽初衷很多人在初學(xué)前端的時(shí)候都會(huì)問,如何入門前端同為在前端學(xué)習(xí)道路上,奮力追趕的一員,本人對(duì)于目前網(wǎng)絡(luò)上所能看到的入門級(jí)的教材并不太滿意。在這里本人整理了目前頁面上常見功能實(shí)現(xiàn)的具體實(shí)例。

模態(tài)相冊(cè)

代碼儲(chǔ)存在Github
效果預(yù)覽

初衷:很多人在初學(xué)前端的時(shí)候都會(huì)問,“如何入門前端?”
同為在前端學(xué)習(xí)道路上,奮力追趕的一員,本人對(duì)于目前網(wǎng)絡(luò)上所能看到的 “入門級(jí)” 的教材并不太滿意。學(xué)習(xí)一門新知識(shí),實(shí)例是尤其重要的。在這里本人整理了目前頁面上常見功能實(shí)現(xiàn)的具體實(shí)例。愿能為大家提供一些幫助。
希望能夠與大家互相分享,共同進(jìn)步。

HTML部分
  
  
×
CSS 部分
/*初始化*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.row > .column {
  padding: 0 8px;
}

/*清除浮動(dòng)*/
.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  float: left;
  width: 25%;
}

.column img {
  width: 100%;
  cursor: pointer;
}

/*模態(tài)框*/
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

/*模態(tài)內(nèi)容*/
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: 0 auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
  animation: zoomShow 0.5s; /*添加動(dòng)畫*/
}

@keyframes zoomShow {
  from {transform: scale(0)}
  to {transform: scale(1)}
}

/*關(guān)閉按鈕*/
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/*模態(tài)圖片*/
.mySlides {
  display: none;
  background-color: rgba(0,0,0,0.9);
  animation: fadeShow 0.5s; /*添加動(dòng)畫*/
}

@keyframes fadeShow {
  from {opacity: 0}
  to {opacity: 1}
}

.mySlides img {
  width: 100%;
} 

/*前翻后翻*/
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/*定位數(shù)字*/
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/*圖片標(biāo)題*/
.caption-container {
  text-align: center;
  background-color: rgba(0,0,0,0.9);
  padding: 5px 16px 10px;
  color: white;
}

img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s
}

img.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19)
}
JavaScript 部分
(function() {

    /*打開模態(tài)框*/
    function openModal() {
        var myModal = document.getElementById("myModal");
        myModal.style.display = "block";
    }
    
    /*關(guān)閉模態(tài)框*/
    function closeModal() {
        var myModal = document.getElementById("myModal");
        myModal.style.display = "none";
    }

    /*切換模態(tài)圖*/
    function changeSlide(num) {
        var currentSlide,
            slides = document.getElementsByClassName("mySlides");
        for (index = 0; index < slides.length; index++) {
            if(slides[index].style.display == "block") {
                currentSlide = index + 1;
            }
        }
        showSlide(currentSlide += num);
    }

    /*顯現(xiàn)模態(tài)圖*/
    function showSlide(num) {
        var index,
            slides = document.getElementsByClassName("mySlides"),
            dots = document.getElementsByClassName("demo"),
            captionText = document.getElementById("caption");
        
        if (num > slides.length) {
            num = 1
        }
        if (num < 1) {
            num = slides.length
        }
        for (index = 0; index < slides.length; index++) {
            slides[index].style.display = "none";
        }
        for (index = 0; index < dots.length; index++) {
            dots[index].classList.remove("active");
        }
        
        slides[num - 1].style.display = "block";
        dots[num - 1].classList.add("active");
        captionText.innerHTML = dots[num - 1].alt;
    }

    /*點(diǎn)擊模態(tài)內(nèi)容以外,自動(dòng)關(guān)閉*/
    function clickOutside() {
        var myModal = document.getElementById("myModal");
        window.onclick = function(event) {
            if(event.target == myModal) {
                closeModal();
            }
        }
    }

    /*綁定事件監(jiān)聽*/
    function addEvent() {
        var index,
            triggerImgs = document.getElementsByClassName("triggerImg"),
            dots = document.getElementsByClassName("demo"),
            closeBtn = document.getElementById("closeBtn"),
            prevBtn = document.getElementsByClassName("prev")[0],
            nextBtn = document.getElementsByClassName("next")[0];

        for(index = 0; index < triggerImgs.length; index++) {
            (function(index) {
                triggerImgs[index].onclick = function() {
                openModal();
                showSlide(index + 1);
                }
            })(index);
        }

        for(index = 0; index < dots.length; index++) {
            (function(index) {
                dots[index].onclick = function() {
                showSlide(index + 1);
                }
            })(index);
        }

        prevBtn.onclick = function() {
            changeSlide(-1);
        }

        nextBtn.onclick = function() {
            changeSlide(1);
        }
        
        closeBtn.onclick = function() {
            closeModal();
        }
    }

    /*初始化*/
    function init() {
        addEvent();
        clickOutside();
    }

    /*調(diào)用*/
    init();
})();

好啦,現(xiàn)在所有的代碼都寫完啦!

趕快打開瀏覽器,看看效果吧!

在這里,只是給大家提供一種思路,參考。
具體的實(shí)現(xiàn),每個(gè)人都可以有不同的方法。
請(qǐng)大家趕快發(fā)揮想象,把你最想實(shí)現(xiàn)的功能,在電腦敲出來吧!

參考自w3cschools

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/50563.html

相關(guān)文章

  • 前端實(shí)例練習(xí) - 模態(tài)相冊(cè)

    摘要:模態(tài)相冊(cè)代碼儲(chǔ)存在效果預(yù)覽初衷很多人在初學(xué)前端的時(shí)候都會(huì)問,如何入門前端同為在前端學(xué)習(xí)道路上,奮力追趕的一員,本人對(duì)于目前網(wǎng)絡(luò)上所能看到的入門級(jí)的教材并不太滿意。在這里本人整理了目前頁面上常見功能實(shí)現(xiàn)的具體實(shí)例。 模態(tài)相冊(cè) 代碼儲(chǔ)存在Github效果預(yù)覽 初衷:很多人在初學(xué)前端的時(shí)候都會(huì)問,如何入門前端?同為在前端學(xué)習(xí)道路上,奮力追趕的一員,本人對(duì)于目前網(wǎng)絡(luò)上所能看到的 入門級(jí) 的教材...

    FreeZinG 評(píng)論0 收藏0
  • 前端實(shí)例練習(xí) - 模態(tài)相冊(cè)

    摘要:模態(tài)相冊(cè)代碼儲(chǔ)存在效果預(yù)覽初衷很多人在初學(xué)前端的時(shí)候都會(huì)問,如何入門前端同為在前端學(xué)習(xí)道路上,奮力追趕的一員,本人對(duì)于目前網(wǎng)絡(luò)上所能看到的入門級(jí)的教材并不太滿意。在這里本人整理了目前頁面上常見功能實(shí)現(xiàn)的具體實(shí)例。 模態(tài)相冊(cè) 代碼儲(chǔ)存在Github效果預(yù)覽 初衷:很多人在初學(xué)前端的時(shí)候都會(huì)問,如何入門前端?同為在前端學(xué)習(xí)道路上,奮力追趕的一員,本人對(duì)于目前網(wǎng)絡(luò)上所能看到的 入門級(jí) 的教材...

    whidy 評(píng)論0 收藏0
  • 前端實(shí)例練習(xí) - 模態(tài)

    摘要:模態(tài)框代碼儲(chǔ)存在效果預(yù)覽初衷很多人在初學(xué)前端的時(shí)候都會(huì)問,如何入門前端同為在前端學(xué)習(xí)道路上,奮力追趕的一員,本人對(duì)于目前網(wǎng)絡(luò)上所能看到的入門級(jí)的教材并不太滿意。在這里本人整理了目前頁面上常見功能實(shí)現(xiàn)的具體實(shí)例。 模態(tài)框 代碼儲(chǔ)存在Github效果預(yù)覽 初衷:很多人在初學(xué)前端的時(shí)候都會(huì)問,如何入門前端?同為在前端學(xué)習(xí)道路上,奮力追趕的一員,本人對(duì)于目前網(wǎng)絡(luò)上所能看到的 入門級(jí) 的教材并不...

    xiaotianyi 評(píng)論0 收藏0
  • 前端實(shí)例練習(xí) - 模態(tài)

    摘要:模態(tài)框代碼儲(chǔ)存在效果預(yù)覽初衷很多人在初學(xué)前端的時(shí)候都會(huì)問,如何入門前端同為在前端學(xué)習(xí)道路上,奮力追趕的一員,本人對(duì)于目前網(wǎng)絡(luò)上所能看到的入門級(jí)的教材并不太滿意。在這里本人整理了目前頁面上常見功能實(shí)現(xiàn)的具體實(shí)例。 模態(tài)框 代碼儲(chǔ)存在Github效果預(yù)覽 初衷:很多人在初學(xué)前端的時(shí)候都會(huì)問,如何入門前端?同為在前端學(xué)習(xí)道路上,奮力追趕的一員,本人對(duì)于目前網(wǎng)絡(luò)上所能看到的 入門級(jí) 的教材并不...

    CODING 評(píng)論0 收藏0
  • 前端實(shí)例練習(xí) - 模態(tài)

    摘要:模態(tài)框代碼儲(chǔ)存在效果預(yù)覽初衷很多人在初學(xué)前端的時(shí)候都會(huì)問,如何入門前端同為在前端學(xué)習(xí)道路上,奮力追趕的一員,本人對(duì)于目前網(wǎng)絡(luò)上所能看到的入門級(jí)的教材并不太滿意。在這里本人整理了目前頁面上常見功能實(shí)現(xiàn)的具體實(shí)例。 模態(tài)框 代碼儲(chǔ)存在Github效果預(yù)覽 初衷:很多人在初學(xué)前端的時(shí)候都會(huì)問,如何入門前端?同為在前端學(xué)習(xí)道路上,奮力追趕的一員,本人對(duì)于目前網(wǎng)絡(luò)上所能看到的 入門級(jí) 的教材并不...

    caige 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<