生活随笔
收集整理的這篇文章主要介紹了
常用前端代码资源(转)
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
轉(zhuǎn)自https://github.com/jsfront/src/blob/master/css.md
以下是常用的代碼收集,沒(méi)有任何技術(shù)含量,只是填坑的積累。轉(zhuǎn)載請(qǐng)注明出處,謝謝。 1. css 2.x /*強(qiáng)制不換行*/
white-space:nowrap;
/*自動(dòng)換行*/
word-wrap: break-word;
word-break: normal;
/*強(qiáng)制英文單詞斷行*/
word-break:break-all; text-align:justify;text-justify:inter-ideogra
去掉Webkit(chrome)瀏覽器中input(文本框)或textarea的黃色焦點(diǎn)框 input,button,select,textarea{ outline:none;} textarea{ font-size:13px; resize:none;} .fixed-top /* position fixed Top */{position:fixed;bottom:auto;top:0; } * html .fixed-top /* IE6 position fixed Top */{position:absolute;bottom:auto;top:expression(eval(document.documentElement.scrollTop));} *html{background-image:url(about:blank);background-attachment:fixed;} .clearfix:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0;} .clearfix{display:inline-block;} html[xmlns] .clearfix{display:block;} * html .clearfix{height:1%;} .clearfix{*zoom: 1;} .clearfix:after{clear:both;display:table;content:"”;} .clearfix{overflow:hidden;_zoom:1;} http://www.daqianduan.com/3606.html
.tab{border-collapse:separate;border:1px solid #e0e0e0;} .tab th,.tab td{padding:3px;font-size:12px;background:#f5f9fb;border:1px solid;border-color:#fff #deedf6 #deedf6 #fff;} .tab th{background:#edf4f0;} .tab tr.even td{background:#fff;} <
table class="tab" width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <th>111</th> <td>222</td> </tr> <tr> <th>111</th> <td>222</td> </tr> </table> .minheight500{min-height:500px;height:auto !important;height:500px;overflow:visible;} cursor:not-allowed;
mac font: osx平臺(tái)字體優(yōu)化 font-family:"Hiragino Sans GB","Hiragino Sans GB W3",'微軟雅黑';
.ellipsis,.ell{white-space:nowrap;overflow:hidden;text-overflow:ellipsis} 2. css 3 × .b{box-shadow:inset 1px -1px 0 #f1f1f1;text-shadow:1px 1px 0px #630;} filter:progid:DXImageTransform.Microsoft.gradient(enabled='true',startColorstr='#99000000',endColorstr='#99000000');background:rgba(0,0,0,.6); background:rgba(0,0,0,0.5);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#50000000',endColorstr='#50000000')\9; ::-webkit-
input-placeholder {}
::-moz-input-placeholder {}
input:focus::-webkit-input-placeholder { color: transparent; } -webkit-appearance:none; google邊框去除 input[type="search"]{-webkit-appearance:textfield;} // 去除chrome默認(rèn)樣式 http://i.wanz.im/2011/02/04/remove_border_from_input_type_search/ http://blog.csdn.net/do_it__/article/details/6789699 line-height: normal; /* for non-ie */ line-height: 22px\9; /* for ie */ pointer-events:none;
-webkit-user-modify: read-write-plaintext-only;
input:focus時(shí)input不隨軟鍵盤升起而抬高的情況 :focus{-webkit-tap-highlight-color:rgba(255, 255, 255, 0);-webkit-user-modify:read-write-plaintext-only;} html{filter: grayscale(100%);-webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); -webkit-filter: grayscale(1); } -moz-user-focus:ignore;-moz-user-
input:disabled;-moz-user-select:none; display:block;border:solid transparent;line-height: 0;width:0; height:0;border-top:solid #0288ce;border-width:8px 6px 0 6px;border-
style:solid; border-width:7px; border-color:transparent transparent transparent #ff7020;
position:absolute;top: 0;left: 0;border-width:20px;border-style:solid;border-color:#d1ddde transparent transparent #d1ddde; ie6 bug測(cè)試,把border-style設(shè)為dashed.
resize:none
input,button,select,textarea{outline:none} textarea{resize:none} a{-webkit-tap-highlight-color:rgba(0,0,0,0);} 取消input,button焦點(diǎn)或點(diǎn)擊時(shí)藍(lán)色邊框 input{outline:none;} display:-webkit-box;-webkit-box-pack:center; -webkit-box-align: center;
position:absolute; top:50%;left:50%;transform:translate(-50%,-50%);
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration { display: none; } input:-webkit-autofill {-webkit-box-shadow: 0 0 0px 1000px white inset;} input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill { -webkit-box-shadow: 0 0 0 1000px white inset; } autocomplete="off" 手機(jī)版本網(wǎng)頁(yè)a標(biāo)記虛線框問(wèn)題 a:focus {outline:none;-moz-outline:none;} -webkit-tap-highlight-color:rgba(255, 255, 255, 0);
-webkit-tap-highlight-color:transparent; //
i.e. Nexus5/Chrome and Kindle Fire HD 7'' input:-moz-placeholder {color: #369;}
::-webkit-input-placeholder {color:#369;} -webkit-tap-highlight-color:rgba(255,0,0,0
.5);-webkit-tap-highlight-color:transparent; /* For some Androids */ IOS iframe 滾動(dòng) 滾動(dòng)回彈特效 -webkit-overflow-scrolling:touch;overflow-y:scroll;
-moz-user-
select:none;
-webkit-user-select:none;
-ms-user-select:none;
user-select:none; 模糊(毛玻璃)效果1 模糊(毛玻璃)效果2 模糊(毛玻璃)逼真效果 .blur { -webkit-filter: blur(10px); /* Chrome, Opera */ -moz-filter: blur(10px); -ms-filter: blur(10px); filter: blur(10px); } <
img src="mm1.jpg" />
<img src="mm1.jpg" class="blur" /> 顯示旋轉(zhuǎn)加載圖片,下拉加載數(shù)據(jù) #pullDown .pullDownIcon{display:inline-block;vertical-align:middle;width:40px;height:40px;background:url(https://github.com/chalecao/chale/blob/master/pull-icon%402x.png) 0 0 no-repeat;-webkit-background-size:40px 80px;background-size:40px 80px;-webkit-transition-property:-webkit-transform;-webkit-transition-duration:250ms} #pullDown .pullDownIcon{-webkit-transform:rotate(0deg) translateZ(0)} #pullDown .pullDownLabel{display:inline-block;vertical-align:middle;margin-left:5px;} #pullDown.flip .pullDownIcon{-webkit-transform:rotate(-180deg) translateZ(0)} #pullDown.loading .pullDownIcon{background-position:0 100%;-webkit-transform:rotate(0deg) translateZ(0);-webkit-transition-duration:0ms;-webkit-animation-name:loading;-webkit-animation-duration:2s;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear} @-webkit-keyframes loading{ from{-webkit-transform:rotate(0deg) translateZ(0)} to{-webkit-transform:rotate(360deg) translateZ(0)} } <
div id="pullDown" class="none loading"> <span class="pullDownIcon"></span><span class="pullDownLabel">正在載入中...</span> </div> 手機(jī)多終端適配 media queryweb app iphone4 iphone5 iphone6 響應(yīng)式布局 適配代碼 @media (device-height:480px) and (-webkit-min-device-pixel-ratio:2){/* 兼容iphone4/4s */ .class{} } @media (device-height:568px) and (-webkit-min-device-pixel-ratio:2){/* 兼容iphone5 */ .class{} } @media (device-height:667px) and (-webkit-min-device-pixel-ratio:2){/* 兼容iphone6 */ .class{} } @media (device-height:736px) and (-webkit-min-device-pixel-ratio:2){/* 兼容iphone6 Plus */ .class{} } 屏蔽蘋(píng)果瀏覽器對(duì)數(shù)字的識(shí)別Meta標(biāo)簽中的format-detection屬性及含義 <
meta content="telephone=no" name="format-detection"> <
a href="tel:15222222222">移動(dòng)WEB頁(yè)面JS一鍵撥打號(hào)碼咨詢功能</a> <a href="sms:15222222222">移動(dòng)WEB頁(yè)面JS一鍵發(fā)送短信咨詢功能</a> <!--移動(dòng)web頁(yè)面自動(dòng)探測(cè)電話號(hào)碼--> <meta name="format-detection" content="telephone=no"> <meta http-equiv="x-rim-auto-match" content="none"> @media screen and (orientation: portrait) {/*豎屏 css*/ } @media screen and (orientation: landscape) { /*橫屏 css*/ } //判斷手機(jī)橫豎屏狀態(tài):
window.addEventListener("onorientationchange" in window ? "orientationchange" : "resize", function() { if (window.orientation === 180 || window.orientation === 0) { alert('豎屏狀態(tài)!'); } if (window.orientation === 90 || window.orientation === -90 ){ alert('橫屏狀態(tài)!'); } }, false); //移動(dòng)端的瀏覽器一般都支持window.orientation這個(gè)參數(shù),通過(guò)這個(gè)參數(shù)可以判斷出手機(jī)是處在橫屏還是豎屏狀態(tài)。
轉(zhuǎn)載于:https://www.cnblogs.com/zpfind/p/5506336.html
總結(jié)
以上是生活随笔 為你收集整理的常用前端代码资源(转) 的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
如果覺(jué)得生活随笔 網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔 推薦給好友。