How to realize cropping and proportional scaling of pictures in Vue

the company needs to rewrite Mini Program into H5, and one problem it encounters is the adaptation of img pictures.

  :
  

clipboard.png


clipboard.png


clipboard.png
https://developers.weixin.qq....


clipboard.png

  
   
  VUE?

Mar.28,2022

img {object-fit: cover;}


.image{
    background-size: cover;
    background-position: center 0;
}

cosnt image = new Image();
image.onload = ()=>{
  //   
  // overflow:hidden
};
Menu