MySQL數據庫InnoDB引擎下辦事器斷電數據恢復辦法。本站提示廣大學習愛好者:(MySQL數據庫InnoDB引擎下辦事器斷電數據恢復辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是MySQL數據庫InnoDB引擎下辦事器斷電數據恢復辦法正文
本篇後果應用HTML、CSS和Jq完成的圖片點擊預覽功效,在預覽時也能夠點擊切換圖片。圖片1為全體後果,圖片2是點擊圖片1後湧現被點擊圖片的預覽圖片的稱號和解釋。
圖片1
圖片2
完成的代碼:
html代碼:
<div id="ImageMain"> <img src="1img1.jpg"/><img src="1img2.jpg"/> <img src="1img3.jpg"/> <img src="1img4.jpg"/> <img src="1img5.jpg"/> <img src="1img6.jpg"/> </div>
<div id="ImageScaBg"></div>
<div id="ImageSca">
<div id="ImageContainer">
<img id="imgCenter" src="1img3.jpg"/>
<div id="imgLunbo"><img class="imgLunboItem" src="1img1.jpg"/></div>
</div>
<div id="ImageInfo">
<h3 id="imgName"></h3>
<p id="imgInfo"></p>
</div>
</div>
css3代碼:
#ImageMain {
width: 630px;
height: 500px;
margin: 0 auto;
margin-top: 100px;
}
#ImageMain>img{
width:200px;
height:200px;
cursor:pointer;
float:left;
margin-left:10px;
margin-top:10px;
}
#ImageMain>img:hover{
opacity:0.8;
}
#ImageScaBg{
position:fixed;
background-color:#000;
top:0px;
left:0px;
opacity:0.6;
width:100%;
height:100%;
display:none;
}
#ImageSca{
position:absolute;
background-color:#333;
border:1px solid #ccc;
-webkit-border-radius:5px;
-moz-border-radius:5px;
border-radius:5px;
display:none;
}
#ImageContainer{
float:left;
text-align:center;
}
#ImageInfo{
float:left;
width:300px;
background-color:#fff;
-webkit-border-radius:0 3px 3px 0;
-moz-border-radius:0 3px 3px 0;
border-radius:0 3px 3px 0;
}
#imgName{
font: 15px "微軟雅黑", Arial, Helvetica, sans-serif;
padding-left:10px;
font-weight:500px;
}
#imgInfo{
font: 13px "微軟雅黑", Arial, Helvetica, sans-serif;
padding-left:10px;
color:#808080;
}
#imgLunbo{
height:80px;
position:absolute;
margin-left:50px;
}
.imgLunboItem{
width:76px;
height:76px;
margin-left:10px;
}
JQ的代碼:
復制內容到剪貼板
- var ImageScaHandler={
- ImageMaxWidth:800,
- ImageMaxHeight:600,
- ImagePathJson:[{imgName:"預覽彈出層測試圖片1",imgPath:"1img1.jpg",imgInfo:"HTML圖片預覽彈出層測試圖片-豪車圖片集錦(圖片均來自互聯網)"},
- {imgName:"預覽彈出層測試圖片2",imgPath:"1img2.jpg",imgInfo:"HTML圖片預覽彈出層測試圖片-豪車圖片集錦(圖片均來自互聯網)"},
- {imgName:"預覽彈出層測試圖片3",imgPath:"1img3.jpg",imgInfo:"HTML圖片預覽彈出層測試圖片-豪車圖片集錦(圖片均來自互聯網)"},
- {imgName:"預覽彈出層測試圖片4",imgPath:"1img4.jpg",imgInfo:"HTML圖片預覽彈出層測試圖片-豪車圖片集錦(圖片均來自互聯網)"},
- {imgName:"預覽彈出層測試圖片5",imgPath:"1img5.jpg",imgInfo:"HTML圖片預覽彈出層測試圖片-豪車圖片集錦(圖片均來自互聯網)"},
- {imgName:"預覽彈出層測試圖片6",imgPath:"1img6.jpg",imgInfo:"HTML圖片預覽彈出層測試圖片-豪車圖片集錦(圖片均來自互聯網)"}
- ],
- Init:function(){
- $("#ImageSca").css("width",ImageScaHandler.ImageMaxWidth 200 "px");
- $("#ImageSca").css("height",ImageScaHandler.ImageMaxHeight 10 "px");
- $("#ImageSca").css("top",($(window).height()-$("#ImageSca").height())/2 "px");
- $("#ImageSca").css("left",($(window).width()-$("#ImageSca").width())/2 "px");
- $("#ImageContainer").css("width",$("#ImageSca").width()-300 "px").css("height",$("#ImageSca").height());
- $("#imgLunbo").css("width",$("#ImageSca").width()-300-100 "px").css("top",$("#ImageSca").height()-90 "px");
- $("#ImageInfo").css("height",$("#ImageSca").height());
- $("#ImageMain>img").click(function(){
- ImageScaHandler.ChangeImage($(this));
- });
- ImageScaHandler.GetImage();
- $("#ImageSca").click(function(event){
- event.stopPropagation();
- });
- $("#ImageScaBg").click(function(event){
- ImageScaHandler.Hide();
- });
- },
- Show:function(){
- $("#ImageSca").css("display","block");
- $("#ImageScaBg").css("display","block");
- },
- Hide:function(){
- $("#ImageSca").css("display","none");
- $("#ImageScaBg").css("display","none");
- },
- GetImage:function(){
- $("#imgLunbo").children().remove();
- for(var i=0;i<ImageScaHandler.ImagePathJson.length;i ){
- var mImage=document.createElement("img");
- mImage.className="imgLunboItem";
- mImage.src=ImageScaHandler.ImagePathJson[i].imgPath;
- $("#imgLunbo").append(mImage);
- mImage.onclick=function(){
- $(".imgLunboItem").css("border","0px solid #000");
- ImageScaHandler.ChangeImage($(this));
- }
- }
- },
- ChangeImage:function(target){
- $("#ImageContainer>img").attr("src",$(target).attr("src"));
- $("#ImageContainer>img").css("margin-top",100 "px");
- ImageScaHandler.Show();
- $(".imgLunboItem").css("border","0px solid #000");
- for(var i=0;i<ImageScaHandler.ImagePathJson.length;i ){
- if(ImageScaHandler.ImagePathJson[i].imgPath==$(target).attr("src")){
- $("#imgName").html(ImageScaHandler.ImagePathJson[i].imgName);
- $("#imgInfo").html(ImageScaHandler.ImagePathJson[i].imgInfo);
- $($(".imgLunboItem")[i]).css("border","2px solid #efefef");
- }
- }
- }
- }
以上就是應用HTML、CSS和Jq完成的圖片點擊預覽功效,感謝浏覽,願望能幫到年夜家,請持續存眷,我們會盡力分享更多優良的文章。