41酱的小草莓

导航

2019年12月3日 #

uniapp实现图片预览效果

摘要: uni有一个自带的previewImage方法,是预览图片的效果,但current属性在h5下传入Number不兼容,所以使用数组的方式传入。 把预览图片封装成一个方法: 1 // 图片预览 2 const imgPreview = (list, idx) => { 3 // list:图片 url 阅读全文

posted @ 2019-12-03 12:01 41酱的小草莓 阅读(19785) 评论(0) 推荐(0) 编辑

ios下输入框的适配问题

摘要: 1. 黄色背景 在ios系统下input、textarea、select自动填充内容后,会出现黄色的背景: 解决办法:用足够大的box-shadow遮盖背景 1 input:-webkit-autofill, 2 textarea:-webkit-autofill, 3 select:-webkit 阅读全文

posted @ 2019-12-03 11:27 41酱的小草莓 阅读(304) 评论(0) 推荐(0) 编辑

关于刘海屏底部的适配问题

摘要: 在iPhone X及以上的刘海屏下适配,一般会用媒体查询将底部流出34px的空白高度。 1 @media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 阅读全文

posted @ 2019-12-03 10:26 41酱的小草莓 阅读(775) 评论(0) 推荐(0) 编辑