• 博客图片点击放大,再点恢复原状


    1. js代码部分放于页脚HTML代码

    <script type="text/javascript"> 
        //图片放大  
    	$("#outerdiv").hide();
    	$(function(){  
    	$("img").mouseover(function(){
    		$(this).css("cursor","pointer");
    	});
    
    	$("img").click(function(){  
    		var _this = $(this);//将当前的pimg元素作为_this传入函数    
    		imgShow("#outerdiv", "#bigimg", _this);    
    	  });     
    	});    
    
    	function imgShow(outerdiv, bigimg, _this){  
    		var src = _this.attr("src");//获取当前点击的pimg元素中的src属性    
    		$('#outerdiv').attr('display','block');  
    		$(bigimg).attr("src", src);//设置#bigimg元素的src属性    
    		 $(outerdiv).fadeIn("fast");  
    		
    	$(outerdiv).click(function(){//再次点击淡出消失弹出层    
    		$(this).fadeOut("fast");    
    	});    
    </script>  
    

    2. html代码部分也放于页脚HTML代码

    <div id="outerdiv" style="text-align: center;position: fixed;z-index: 1000;top: 0;left: 0;
         100%;height: 100%;background-color: rgba(255,255,255,.9);">
        <img id="bigimg" style="height: auto; 46.6325%;border: 0; 
            margin: auto;position: absolute;top: 0;bottom: 0;left: 0;right: 0;" src="" />
    </div> 
    

    大功告成!

  • 相关阅读:
    写了一个Rijndael工具类
    使用bcel动态创建class
    有感于大理古城的天主教堂
    joj 1089 &&zoj 1060&&poj 1094 以及wa的分析和数据
    joj1026
    joj 1317
    joj 1171
    joj 2343
    joj 1078 hdu 1116
    joj 1189
  • 原文地址:https://www.cnblogs.com/zhanxiaoyun/p/8259451.html
Copyright © 2020-2023  润新知