이 기사는 모바일 단말기 재설정과 관련된 튜토리얼을 제공합니다. 관심 있는 친구들은 아래의 구체적인 예시 코드를 참고하세요:
* { margin: 0; padding: 0; } article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; } html { font-size: 12px; color: #666; font-family: 'Microsoft Yahei' 'Helvetica Neue', Helvetica, STHeiTi, Arial, sans-serif; } body{ height: 100%; overflow-x: hidden; -webkit-overflow-scrolling: touch; } audio, canvas, progress, video { display: inline-block; vertical-align: baseline; } img { border: none; vertical-align: middle; } a { text-decoration: none; outline: none; /*设置的tap A标签的时候出现的黑色高亮*/ -webkit-tap-highlight-color: transparent; } a:active { outline: 0; } .clearfix { zoom: 1; } .clearfix:before, .clearfix:after { content: ''; display: table; } .clearfix:after { clear: both; } em { font-style: normal; } input { outline: none; } input[type="text"], input[type="tel"] { -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } /* 去除iphone ipad 设备默认按钮样式 */ input[type="button"], input[type="submit"], input[type="reset"] { -webkit-appearance: none; border-radius: 0; } input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none !important; margin: 0; } input::-moz-placeholder, textarea::-moz-placeholder { color: #cccccc; } input:-ms-input-placeholder, textarea:-ms-input-placeholder { color: #cccccc; } input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: #cccccc; }
/*Knowledge Expansion*/
-webkit-tap-highlight-color -webkit-tap-highlight-color:rgba(0,0,0,0);//透明度设置为0,去掉点击链接和文本框对象时默认的灰色半透明覆盖层(iOS)或者虚框(Android) -webkit-tap-highlight-color:rgba(255,0,0,0.5); //利用此属性,设置touch时链接区域高亮为50%的透明红,只在ios上起作用。android上只要使用了此属性就表现为边框。在body上加此属性,这样就保证body的点击区域效果一致了
2.outline: none
(1) PC에서 a 태그에 대해 이 스타일을 정의하는 목적은 IE 브라우저에서 a 태그를 클릭했을 때 나타나는 점선을 없애기 위한 것입니다. ie7 이하 브라우저는 아직 이 속성을 인식하지 못합니다. 크롬<🎜에서 기본 텍스트 상자 포커스 스타일을 취소하려면 a 태그에 hidefocus="true"
(2)input, textarea{outline:none}을 추가해야 합니다. >(3)은 모바일 단말기에서는 작동하지 않습니다. 텍스트 상자의 기본 스타일을 제거하려면 -webkit-appearance를 사용하여 초점을 맞출 때 기본 스타일을 취소하려면 -webkit-tap-highlight-color를 사용하세요. . 이 속성을 추가하는 일부 모바일 재설정 파일을 보았지만 실제로는 중복됩니다.
-webkit-appearance -webkit-appearance: none;//消除输入框和按钮的原生外观,在iOS上加上这个属性才能给按钮和输入框自定义样式
-webkit-user-select -webkit-user-select: none; // 禁止页面文字选择 ,此属性不 继承一般加在body上规定整个body的文字都不会自动调整
-webkit-text-size-adjust -webkit-text-size-adjust: none; //禁止文字自动调整大小(默认情况下旋转设备的时候文字大小会发生变化),此属性也不继承,一般加在body上规定整个body的文字都不会自动调整
.-webkit-touch-c all out -webkit-touch-callout:none; // 禁用长按页面时的弹出菜单(iOS下有效) ,img和a标签都要加
-webkit-overflow-scrolling-webkit-overflow-scrolling:touch;// 局部滚动(仅iOS 5以上支持)
하이퍼링크로 표시할지 여부를 지정하는 데 사용됩니다. iPhone의 기본값은
<meta name="format-detection" content="telephone=yes"/>
<meta name="format-detection" content="telephone=no"/>
<meta name="apple-mobile-web-app-capable"/>的用处 <meta name=”apple-mobile-web-app-capable” content=”yes” />
위 내용은 모바일 리셋(reset) 사례 분석의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!