小技巧css解决移动端ios不兼容position:fixed属性,无需插件

转载自:http://www.ithao123.cn/content-649841.html

移动端开发仿app头部底部固定设置position:fixed,android2.2以上已经实现。但是在ios8以下系统,当小键盘激活时,都会出现位置浮动问题。如图:

如何解决:

查阅资料之后想到一下几种解决方法

1,使用position:absolute模拟

<script type="text/javascript">
    window.onscroll=function(){
    $(".fixed").css("top",$(window).scrollTop());
   $(".foot").css("top",$(window).scrollTop()+$(window).height());
}
</script>

问题来了:滑动页面时头部底部div会有明显的抖动。

2,判断当前获得焦点元素是input则隐藏div改为position:absolute

<body onload=setInterval("a()",500)>

<script type="text/javascript">
  function a(){
    if(document.activeElement.tagName == ‘INPUT‘){    
      $(".fixed").css({‘position‘: ‘absolute‘,‘top‘:‘0‘}); 
       } else {  
         $(".fixed").css(‘position‘, ‘fixed‘);  
        }
      }
  </script>

问题来了:不停监控dom,消耗资源。如果input个数较少,可在input里面添加onfocus事件好一些。但是如果是底部固定div此方法好像不太给力。

3,插件iscroll.js个人感觉不是很好用。可能方法不对,jQuery Mobile  没尝试,感觉会增负担。

4,重点来了:

只需要在中间部分外层div添加css样式position:fixed;top:50px; bottom:50px;overflow:scroll;就可以实现效果,无需插件。可拷贝下面代码运行。

<!DOCTYPE html>
  <html lang="zh_cmn">
  <head>
  <meta charset=utf-8 />
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0" />
  <title></title>
  <style>
  .head,.foot{position:fixed;left:0;height:38px;line-height:38px;width:100%;background-color:#99CC00;}
  .head{top:0;}
  .foot{bottom:0;}
  .main{position:fixed;top:38px;bottom:38px;width:100%;overflow:scroll;background-color:#BABABA;}
  </style>
  </head>
  <body>
  <header class="head">顶部固定区域</header>
  <article class="main"  id="wrapper">
      <div>
       <p>当内容欲出隐藏时,灰色区域可上下拖动</p>
      <p>当内容欲出隐藏时,灰色区域可上下拖动</p>
       <p>当内容欲出隐藏时,灰色区域可上下拖动</p>
       <p>当内容欲出隐藏时,灰色区域可上下拖动</p>
       <p>当内容欲出隐藏时,灰色区域可上下拖动</p>
       <p>当内容欲出隐藏时,灰色区域可上下拖动</p>
       <p>当内容欲出隐藏时,灰色区域可上下拖动</p>
       <p>当内容欲出隐藏时,灰色区域可上下拖动</p>
       <p>当内容欲出隐藏时,灰色区域可上下拖动</p>
       <p>当内容欲出隐藏时,灰色区域可上下拖动</p>
       <p>当内容欲出隐藏时,灰色区域可上下拖动</p>
      <input type="text" value="" class="inputtext"> <br>
          <input type="text" value="" class="inputtext"> <br>
     <input type="text" value="" class="inputtext"> <br>
     <input type="text" value="" class="inputtext"> <br>
       <input type="text" value="" class="inputtext"> <br>
       <input type="text" value="" class="inputtext"> <br>
      <input type="text" value="" class="inputtext"> <br>
      <input type="text" value="" class="inputtext"> <br>
      <input type="text" value="" class="inputtext"> <br>
       <input type="text" value="" class="inputtext"> <br>
       <input type="text" value="" class="inputtext"> <br>
       <input type="text" value="" class="inputtext"> <br>
       <input type="text" value="" class="inputtext"> <br>
       <input type="text" value="" class="inputtext"> <br>
       <input type="text" value="" class="inputtext"> <br>
       <input type="text" value="" class="inputtext"> <br>
       <input type="text" value="" class="inputtext"> <br>
       <input type="text" value="" class="inputtext"> <br>
       <input type="text" value="" class="inputtext"> <br>
     <input type="text" value="" class="inputtext"> <br>
     <input type="text" value="" class="inputtext"> <br>
       <input type="text" value="" class="inputtext"> <br>
       <input type="text" value="" class="inputtext"> <br>
      <input type="text" value="" class="inputtext"> <br>
      <input type="text" value="" class="inputtext"> <br>
     <input type="text" value="" class="inputtext"> <br>
       <input type="text" value="" class="inputtext"> <br>
       <input type="text" value="" class="inputtext"> <br>
      <input type="text" value="" class="inputtext"> <br>
      <input type="text" value="" class="inputtext"> <br>
     <input type="text" value="" class="inputtext"> <br>
    <input type="text" value="" class="inputtext"> <br>
    <input type="text" value="" class="inputtext"> <br>
      <input type="text" value="" class="inputtext"> <br>
     <input type="text" value="" class="inputtext"> <br>
     <input type="text" value="" class="inputtext"> <br>
      <input type="text" value="" class="inputtext"> <br>
      <input type="text" value="" class="inputtext"> <br>
      <input type="text" value="" class="inputtext"> <br>
      <input type="text" value="" class="inputtext"> <br>
      <input type="text" value="" class="inputtext"> <br>
      <input type="text" value="" class="inputtext"> <br>
      <input type="text" value="" class="inputtext"> <br>
       <input type="text" value="" class="inputtext"> <br>
      <input type="text" value="" class="inputtext"> <br>
      <input type="text" value="" class="inputtext"> <br>
       content <br>
      content <br>
      content <br>
      content <br>
      content <br>
      content <br>
      content <br>
      content <br>
      content <br>
    </div>
  </article>
  <footer class="foot">底部固定区域</footer>
  </body>
  </html>

  

时间: 2024-09-28 11:35:41

小技巧css解决移动端ios不兼容position:fixed属性,无需插件的相关文章

css解决移动端ios不兼容position:fixed属性,无需插件

移动端开发仿app头部底部固定设置position:fixed,android2.2以上已经实现.但是在ios8以下系统,当小键盘激活时,都会出现位置浮动问题.如图: 如何解决: 查阅资料之后想到一下几种解决方法 1,使用position:absolute模拟 <script type="text/javascript">     window.onscroll=function(){     $(".fixed").css("top"

解决IE6不支持position:fixed属性

最近在优化网站浮动广告时候遇见了IE6不支持position:fixed属性.上网收集了一下解决方案 比较好的方案就是利用css表达式进行解决 补充:CSS Expression (CSS 表达式),是一种使用动态设置 CSS 属性的方式,并且被 IE5 以上的版本所支持,但是 IE8 的标准模式已不再支持 CSS 表达式了 IE7和以上的浏览器都支持position:fixed: 之前写过一篇介绍过固定页脚的文字,那时候没在ie6下测试 方法一 <!--[if IE 6]> <styl

父节点使用css的transform: translate(0, 0)时position:fixed在chrome浏览器中无效

今天在做移动端的页面,无意间发现了一个Chrome浏览器下的一个bug,在使用CSS3的transform: translate(0, 0)属性对节点A进行位置转化,此时A节点下面有一个字节点B,节点B使用了position:fixed进行了定位,按照常理节点B应该悬挂在浏览器窗口视图上,不会跟随滚动条而滚动的,但是这个效果在Chrome浏览器下面是无效的,经过测试在IE11.Firefox.safari中均没有问题,在Opera中出现的效果和Chrome中完全一样. 总结一下:在Chrome和

【css】修正ie6下不支持position:fixed

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta h

css 兼容 position:fixed

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-

小技巧 - CSS中:hover调试

在调试CSS的时候,我一般使用Chrome的F12开发者工具,或者FireFox的FireBug直接在元素上面修改好Style后,再写入到CSS中.前几天遇到一个问题就是a:hover,鼠标一移开效果就看不到了.后来查了一些资料,终于找到解决办法了. FF中: Chrome中: 没有什么技术含量,只是分享一下,也免得自己忘记了.

小技巧-CSS 三角的做法

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="X-UA-Compatible"

备:移动端开发资源和小技巧

(在github上看到的,转摘而来,如果有版权问题请联系我[email protected]) mobileTech A useful tools or tips list for mobile web application developing 这个项目收集移动端开发所需要的一些资源与小技巧 移动端统计 (from BiosSun) 可基于下方所列出的统计数据来决定您要兼容的设备及浏览器. 百度移动统计 友盟指数 CNZZ 桌面及移动端浏览器统计 全球移动端浏览器统计 工具类网站 HTML5

解决ios、微信移动端的position: fixed; 支持性不好的问题 &amp;&amp; 禁用下拉暴露黑底的功能

解决ios.微信移动端的position: fixed; 支持性不好的问题 在chrome中的多个部分使用了position: fixed之后,都可以正常的布局,但是放在微信上却出现了不能正常显示的问题(第一个问题). 并且使用了postion: fixed; 的一个种类名称栏在微信下下滑不了,而body是可以的,确实让人很郁闷(第二个问题). 对于第二个问题,我们可以采取的方式是使得微信不能下滑暴露出 powered by ... 的字样. 但是对于第一个问题,确实没有很好的解决方法. 所以就