uniapp input框聚焦时软键盘弹起整个页面上滑,固定页面不让上滑问题


根据需求,软键盘弹起时,不允许页面整体向上滑动

用到的属性是:  :adjust-position="false"    

 

uni-app 软键盘顶起底部fixed定位的输入框 页面就不会上滑

<view class="cu-bar search bg-white" style="position: fixed;left: 0;bottom: '键盘弹的高度';width: 100%;z-index: 9999;" >
	<view class="search-form">
		<input :adjust-position="false" type="text" placeholder=" 请输入信息"  v-model="my_say_text"></input>
		<button @click="to_send" type="primary" style="height: 64upx;line-height: 64upx;margin-left: 16upx;background: #FF5959;">发送</button>
	</view>
</view>

  

 

 

 把这个值赋给fixed定位中的 bottom即可     

:style="{bottom: inputOffsetBottom > 0 ? inputOffsetBottom + 'px' : '0'}"

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM