JS怎么实现图片预览效果

效果图片:http://hiphotos.baidu.com/646083309/abpic/item/e0c6697e9e1a6b3228388ae5.jpg我的想法是... 效果图片:https://gss0.baidu.com/7LsWdDW5_xN3otqbppnN2DJv/646083309/abpic/item/e0c6697e9e1a6b3228388ae5.jpg
我的想法是:我用文本域浏览一张图片后或者当我点击预览按钮时,上面的图片会变成我浏览的那张图片
哪位高手可不可以帮我实现这个功能?!
王某感激不尽!
展开
 我来答
luffy1201
推荐于2016-01-29 · TA获得超过1523个赞
知道小有建树答主
回答量:401
采纳率:0%
帮助的人:578万
展开全部
<form action="" method="post" enctype="multipart/form-data" name="form1">
<img src=" " name="image" border=0 id="img"/>
<br />
<input name="picture" type="file" id="picture" onchange="img.src=this.value" />
</form>

不需要按钮,直接触发onchange事件就能实现~~~
llscp
推荐于2018-05-18 · 超过16用户采纳过TA的回答
知道答主
回答量:63
采纳率:0%
帮助的人:27.6万
展开全部
                //图片上传预览    IE是用了滤镜。
        function previewImage(file)
        {
          var MAXWIDTH  = 260; 
          var MAXHEIGHT = 180;
          var div = document.getElementById('preview');
          if (file.files && file.files[0])
          {
              div.innerHTML ='<img id=imghead>';
              var img = document.getElementById('imghead');
              img.onload = function(){
                var rect = clacImgZoomParam(MAXWIDTH, MAXHEIGHT, img.offsetWidth, img.offsetHeight);
                img.width  =  rect.width;
                img.height =  rect.height;
//                 img.style.marginLeft = rect.left+'px';
                img.style.marginTop = rect.top+'px';
              }
              var reader = new FileReader();
              reader.onload = function(evt){img.src = evt.target.result;}
              reader.readAsDataURL(file.files[0]);
          }
          else //兼容IE
          {
            var sFilter='filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=scale,src="';
            file.select();
            var src = document.selection.createRange().text;
            div.innerHTML = '<img id=imghead>';
            var img = document.getElementById('imghead');
            img.filters.item('DXImageTransform.Microsoft.AlphaImageLoader').src = src;
            var rect = clacImgZoomParam(MAXWIDTH, MAXHEIGHT, img.offsetWidth, img.offsetHeight);
            status =('rect:'+rect.top+','+rect.left+','+rect.width+','+rect.height);
            div.innerHTML = "<div id=divhead style='width:"+rect.width+"px;height:"+rect.height+"px;margin-top:"+rect.top+"px;"+sFilter+src+"\"'></div>";
          }
        }
        function clacImgZoomParam( maxWidth, maxHeight, width, height ){
            var param = {top:0, left:0, width:width, height:height};
            if( width>maxWidth || height>maxHeight )
            {
                rateWidth = width / maxWidth;
                rateHeight = height / maxHeight;
                 
                if( rateWidth > rateHeight )
                {
                    param.width =  maxWidth;
                    param.height = Math.round(height / rateWidth);
                }else
                {
                    param.width = Math.round(width / rateHeight);
                    param.height = maxHeight;
                }
            }
             
            param.left = Math.round((maxWidth - param.width) / 2);
            param.top = Math.round((maxHeight - param.height) / 2);
            return param;
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
过去到未来哇
2017-01-15 · TA获得超过4980个赞
知道小有建树答主
回答量:6025
采纳率:0%
帮助的人:1001万
展开全部
target:点击的图
把target复制一个出来,设置postion:fixed,然后加入到body后面,用于放大显示。
把target设置为不显示(visiable:hidden)。

移动问题:
逗它旁边的图片也需要跟着移动,同时达到一个循环地,看不懂什么意思。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式