2000字范文,分享全网优秀范文,学习好帮手!
2000字范文 > 纯CSS实现图片自适应容器大小

纯CSS实现图片自适应容器大小

时间:2023-01-27 07:12:09

相关推荐

纯CSS实现图片自适应容器大小

图片自适应DIV盒子的大小

img{width: auto;height: auto;max-height: 100%;max-width: 100%;}

根据浏览器窗口大小,自动更改图片大小

<img ref="img" :style="{width: myWidth,height:'myHeight'}" :src="myImgData[index]" >

data(){return{myWidth:'100%',myHeight:'auto',imgHeight:""}},

watch:{imgHeight(){if(this.imgHeight>775){this.myHeight = "775px"this.myWidth = "auto"}}},

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。