本文主要是介绍fixed定位在ios中会有小bug,如何通过别的方法做到fixed定位效果?,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
html页面的错误提醒,是动态提示的,一开始是隐藏的
<p class="err-p red-color"></p>
js代码:
function error(text){var u = navigator.userAgent, app = navigator.appVersion;var isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端if (isiOS) {window.setTimeout(scrollBottom(), 500);}function scrollBottom() {$('html').animate({scrollTop:0},500);$('body').animate({scrollTop:0},500);}$(".err-p").slideDown().html(text);setTimeout(function(){$(".err-p").slideUp();},2000)};
css样式:
.err-p{display: none;position: fixed;top: 0px;left: 0px;height: 2.5rem;background: #C7282C;color: white;line-height: 2.5rem;font-size: 1.3rem;width: 100%;text-align: center;z-index: 101;
}
这篇关于fixed定位在ios中会有小bug,如何通过别的方法做到fixed定位效果?的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!