Skip to content
This repository was archived by the owner on Feb 5, 2021. It is now read-only.

RyukyuInteractive/mobile-web

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Disable Auto Zoom for Form

set the font size of the form elements to at least 16px

@media screen and (-webkit-min-device-pixel-ratio:0) { 
  select:focus,
  textarea:focus,
  input:focus {
    font-size: 16px;
    background: #eee;
  }
}

isMobile

    isMobile: function(){
        if(window.matchMedia('screen and (min-width:768px)').matches){
	        return false;
        } else {
	        return true;
        }
    },

Avoid Rubber band scrolling

https://github.com/RyukyuInteractive/mobile-web/wiki/scrolling-menu-on-iPhone

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published