图片宽度转换

图片宽度传成vw,vh

let width = image.width
          let height = image.height
          let actualWidth = data.axis_x / width * 100 + 'vw'
          let actuakHeight = data.axis_y / height * 100 + 'vh'

关于转换图片宽高比

   let image = new Image()  
          image.src = data.room_url //接口中传回来的url
          let width = image.width
          let height = image.height //获取原始图片宽高
          console.log(screenWidth);
          this.imgHeight = (height / width) * screenWidth
          //重新渲染图片的高等于原始图片百分比乘视图宽
    // 就是下面的公式反过来

创建一个Image对象:var a=new Image();    定义Image对象的src: a.src=”xxx.gif”;    这样做就相当于给浏览器缓存了一张图片。

 

/**
 * 已知图片的宽度和高度的等比例缩放
 */

 function knowImgSize(id) {
    var idWidth = $(id).width(),  // 容器的宽度和高度
        idHeight = $(id).height();

    $(id + ' img').each(function(index,img){
        var img_w = $(this).width(),
            img_h = $(this).height();

        // 如果图片自身宽度大于容器的宽度的话 那么高度等比例缩放
        if(img_w > idWidth) {
            
            var height = img_h * idWidth / img_w;  
            //容器宽除图片宽获取比例,再乘高就是了,这个可以理解
            $(this).css({"width":idWidth, "height":height});
        }
    });

 }

 

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值