1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > HTML 小程序 图片百分百显示 以及居中对齐 上下左右对齐 等比缩放

HTML 小程序 图片百分百显示 以及居中对齐 上下左右对齐 等比缩放

时间:2021-07-30 23:58:09

相关推荐

HTML 小程序 图片百分百显示 以及居中对齐 上下左右对齐 等比缩放

1、小程序view-image居中

<view style="height:200rpx;overflow:hidden;border:1rpx solid #ccc;position:relative;"><image class="images" mode="widthFix" src="{{item.imagessrc}}" style="width:100%;height:100%;transform:translate(-50%, -50%);position:absolute;top:50%;left:50%;" role="img"></image></view>

小程序还有一个本身更加方法的属性和样式设置,如下

style="width:100%;height:100%;"

mode="aspectFit"

<view style="width:100%;height:100%;color:#888;border:2px dashed pink;position:relative;" ><text style="position:absolute;top:50%;left:50%;width:100rpx;height:100rpx;line-heigth:100rpx;margin-left:-50rpx;margin-top:-50rpx;text-align:center;">+</text><image src="{{imageList[0].path}}" style="width:100%;height:100%;" mode="aspectFit"></image></view>

小程序另一个自适应显示图片

<image bindtap="" bindload="imageLoad" src="{{path}}" data-src="{{path}}" style="width:100% !important;height:100% !important;opacity:{{opacity}};" model="aspectFit"></image>

2、HTML div-image居中

<div style="height:0;width:100%;padding:50% 0;background:#fff;position:relative;"><img style="transform: translate(-50%, -50%);position:absolute;top:50%;left:50%;width: auto !important;height: auto !important;max-height: 100%;max-width: 100%;" data-src="/static/uploads/8c/f8/53/5bc9a3b2916a4.jpg" src="/static/uploads/8c/f8/53/5bc9a3b2916a4.jpg" lazy="loaded"></div>

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