白云岛资源网 Design By www.pvray.com
本篇效果利用HTML、CSS和Jq实现的图片点击预览功能,在预览时也可以点击切换图片。图片1为整体效果,图片2是点击图片1后出现被点击图片的预览图片的名称以及说明。
图片1
图片2
实现的代码:
html代码:
XML/HTML Code复制内容到剪贴板- <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代码:
CSS Code复制内容到剪贴板- #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实现的图片点击预览功能,谢谢阅读,希望能帮到大家,请继续关注,我们会努力分享更多优秀的文章。
白云岛资源网 Design By www.pvray.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
白云岛资源网 Design By www.pvray.com
暂无评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。