移动端页面在ios上经常出现的问题

头部有输入框,聚焦后固定定位失效,排版混乱

解决方法:
头部用绝对定位,中间内容部分设置高100%,给上padding,然后加上overflow:scroll让中间部分可以滚动,
注意:要看所有父盒子高度是否是100%

.top{
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
         }
.middle{
            height: 100%;
            padding-top: 104px;
            overflow: scroll;
          }

input上传文件

问题:当有图片或者其他内容绑定到input上时ios点击触发不了上传文件的事件。
最初我的解决办法:
给绑定的label标签加边框,然后在中间加一个加号的图标,点击时一般点击不到图标,这样也能触发事件

结构

<label for="fileupload" class="picture-label">
     <i class="iconfont icon-tianjia"></i>
</label>
<form name="imgForm" id="imgForm">
    <input @change='addImg($event)' type="file" accept="image/*" id="fileupload" name="file" style="display:none">
</form>

样式

.picture-label {
        display: inline-block;
        width: 1.6rem;
        height: 1.6rem;
        line-height: 1.6rem;
        margin-top: 0.14rem;
        text-align: center;
        color: #999;
        border: 2px dashed #ccc;
        border-radius: 0.2rem;
      }

最终解决办法:背景图

结构

<label for="fileupload" class="fl picture-label">
</label>
<form name="imgForm" id="imgForm">
	<input @change='addImg($event)' type="file" accept="image/*" id="fileupload" name="file" multiple style="display:none">
</form>

样式

.picture-label {
      width: 1rem;
      height: 1rem;
      background-image: url(../assets/plus_side.png);
      background-size: 1rem;
	}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值