作者 乔爽

实现登录注册页面的聚焦监听

@@ -209,3 +209,7 @@ body{ @@ -209,3 +209,7 @@ body{
209 transition: 1.2s; 209 transition: 1.2s;
210 border-radius: 0.36rem; 210 border-radius: 0.36rem;
211 } 211 }
  212 +
  213 +.bottom_box{
  214 + margin-bottom: 0.8rem;
  215 +}
@@ -157,6 +157,27 @@ @@ -157,6 +157,27 @@
157 popup("登录成功") 157 popup("登录成功")
158 } 158 }
159 }) 159 })
  160 + //苹果input自动下滑兼容
  161 + $("input").blur(function(){
  162 + setTimeout(function() {
  163 + var scrollHeight = document.documentElement.scrollTop || document.body.scrollTop || 0;
  164 + window.scrollTo(0, Math.max(scrollHeight - 1, 0));
  165 + }, 300);
  166 + })
  167 + //聚焦监听
  168 + $('input').focus(function() {
  169 + if((/Android/gi).test(navigator.userAgent)) {
  170 + window.addEventListener('resize', function() {
  171 + if(document.activeElement.tagName == 'INPUT' ||
  172 + document.activeElement.tagName == 'TEXTAREA') {
  173 + window.setTimeout(function() {
  174 + document.activeElement.scrollIntoViewIfNeeded();
  175 + }, 0);
  176 + }
  177 + });
  178 + }
  179 + })
  180 +
160 181
161 182
162 183