成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

CSS常用代碼

ddongjian0000 / 514人閱讀

摘要:文字換行強(qiáng)制不換行自動(dòng)換行強(qiáng)制英文單詞斷行兩端對(duì)齊去掉瀏覽器中文本框或的黃色焦點(diǎn)框去掉記住密碼后自動(dòng)填充表單的黃色背景最小高度兼容代碼鼠標(biāo)不允許點(diǎn)擊平臺(tái)字體優(yōu)化微軟雅黑文字過多后顯示省略號(hào)

1. css 2.x

文字換行

/*強(qiáng)制不換行*/
white-space:nowrap;
/*自動(dòng)換行*/
word-wrap: break-word;
word-break: normal;
/*強(qiáng)制英文單詞斷行*/
word-break:break-all;

兩端對(duì)齊

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;}

去掉chrome記住密碼后自動(dòng)填充表單的黃色背景

ie6: position:fixed

.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

.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

seperate-table

.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;}
111 222
111 222

min-height: 最小高度兼容代碼

.minheight500{min-height:500px;height:auto !important;height:500px;overflow:visible;}

鼠標(biāo)不允許點(diǎn)擊

cursor:not-allowed;

mac font: osx平臺(tái)字體優(yōu)化

font-family:"Hiragino Sans GB","Hiragino Sans GB W3","微軟雅黑";

文字過多后顯示省略號(hào)

.ellipsis,.ell{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
2. css 3

title 換行



關(guān)閉 x 符號(hào)

×

投影

.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;

search占位

::-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: 22px9; /* for ie */

全部瀏覽器的兼容代碼生成
CSS 實(shí)現(xiàn) textArea 的 placeholder 換行

阻止默認(rèn)事件

pointer-events:none;

去掉輸入框聚焦時(shí)候的白色背景

-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;}

變灰 gray

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,#grayscale");
    filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
    -webkit-filter: grayscale(1);
}

firefox 阻止選中

-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:#d1ffffde transparent transparent #d1ffffde;

ie6 bug測(cè)試,把border-style設(shè)為dashed.

取消textarea右下角可拖動(dòng)手柄

resize:none

取消chrome form表單的聚焦邊框

input,button,select,textarea{outline:none}
textarea{resize:none}

取消a鏈接的黃色邊框

a{-webkit-tap-highlight-color:rgba(0,0,0,0);}

取消input,button焦點(diǎn)或點(diǎn)擊時(shí)藍(lán)色邊框

input{outline:none;}

webkit 水平居中

display:-webkit-box;-webkit-box-pack:center; -webkit-box-align: center;
position:absolute; top:50%;left:50%;transform:translate(-50%,-50%);

取消chrome 搜索x提示

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;
}

chrome取消默認(rèn)黃色背景

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)頁a標(biāo)記虛線框問題

a:focus {outline:none;-moz-outline:none;}

焦點(diǎn)去除背景

-webkit-tap-highlight-color:rgba(255, 255, 255, 0);
-webkit-tap-highlight-color:transparent;  // i.e. Nexus5/Chrome and Kindle Fire HD 7""

placeholder占位符顏色自定義

input:-moz-placeholder {color: #369;}
::-webkit-input-placeholder {color:#369;}

IOS 禁用高亮

-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);    
}

顯示旋轉(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)}
}
正在載入中...

手機(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{}
}

屏蔽蘋果瀏覽器對(duì)數(shù)字的識(shí)別Meta標(biāo)簽中的format-detection屬性及含義

移除HTML5 input在type="number"時(shí)的上下小箭頭

在chrome下:

  input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{
      -webkit-appearance: none !important;
      margin: 0; 
  }

Firefox下:

  input[type="number"]{-moz-appearance:textfield;}

第二種方案:

將type="number"改為type="tel",同樣是數(shù)字鍵盤,但是沒有箭頭。

HTML5手機(jī)瀏覽直接給一個(gè)號(hào)碼打電話,發(fā)短信

移動(dòng)WEB頁面JS一鍵撥打號(hào)碼咨詢功能
移動(dòng)WEB頁面JS一鍵發(fā)送短信咨詢功能


CSS判斷橫屏豎屏

@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ù),通過這個(gè)參數(shù)可以判斷出手機(jī)是處在橫屏還是豎屏狀態(tài)。

rem 適配,內(nèi)容太多,只貼網(wǎng)址

rem自適應(yīng)方案

html5移動(dòng)端頁面分辨率設(shè)置及相應(yīng)字體大小設(shè)置的靠譜使用方式

移動(dòng)端高清、多屏適配方案

通過rem布局+media-query:aspect-ratio實(shí)現(xiàn)移動(dòng)端全機(jī)型適配覆蓋

web app變革之rem

手機(jī)淘寶的flexible設(shè)計(jì)與實(shí)現(xiàn)

移動(dòng)端自適應(yīng)方案

【原創(chuàng)】移動(dòng)端高清、多屏適配方案

6個(gè)html5頁面適配iphone6的技巧

關(guān)于移動(dòng)端 rem 布局的一些總結(jié)

從網(wǎng)易與淘寶的font-size思考前端設(shè)計(jì)稿與工作流

移動(dòng)端自適應(yīng)方案

MobileWeb 適配總結(jié)

移動(dòng)端web app自適應(yīng)布局探索與總結(jié)

公式

var PAGE_MAX_WIDTH = 1280,
    BASE_FONT_SIZE = 50;
(function() {
    function n() {
        e.fontSize = Math.min(window.innerWidth / PAGE_MAX_WIDTH * BASE_FONT_SIZE, BASE_FONT_SIZE) + "px"
    }
    var e = document.documentElement.style;
    window.addEventListener("load", n),
    window.addEventListener("resize", n),
    n();
}());

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/111225.html

相關(guān)文章

  • JS / CSS 常用實(shí)戰(zhàn)代碼片段

    摘要:常用模式片段之摘要第一次看到這個(gè)字眼是在中,即。之后也見到一些別人的代碼里有,它和頁面的有什么關(guān)系,以及和有何淵源。以前都見過這些詞,但都似懂非懂,今天查了些資料收集了些代碼,做個(gè)完整的理解。 CSS篇 常用模式片段之CSS布局篇 http://jsorz.cn/blog/2016/08/code-patterns-of-css-layout.html 摘要:position 拉伸性質(zhì)...

    sutaking 評(píng)論0 收藏0
  • JS / CSS 常用實(shí)戰(zhàn)代碼片段

    摘要:常用模式片段之摘要第一次看到這個(gè)字眼是在中,即。之后也見到一些別人的代碼里有,它和頁面的有什么關(guān)系,以及和有何淵源。以前都見過這些詞,但都似懂非懂,今天查了些資料收集了些代碼,做個(gè)完整的理解。 CSS篇 常用模式片段之CSS布局篇 http://jsorz.cn/blog/2016/08/code-patterns-of-css-layout.html 摘要:position 拉伸性質(zhì)...

    stackfing 評(píng)論0 收藏0
  • 列舉幾條常用CSS reset,是否了解normalize.css

    摘要:相比于傳統(tǒng)的是一種現(xiàn)代的為準(zhǔn)備的優(yōu)質(zhì)替代方案??傊且环N的替代方案。一般化的樣式為大部分元素提供。保護(hù)了有價(jià)值的默認(rèn)值通過為幾乎所有的元素施加默認(rèn)樣式,強(qiáng)行使得元素有相同的視覺效果。 Normalize.css只是一個(gè)很小的css文件,但它在磨人的HTML元素樣式上提供了跨瀏覽器的高度一致性。相比于傳統(tǒng)的CSS reset,Normalize.css是一種現(xiàn)代的、為HTML5準(zhǔn)備的優(yōu)...

    Airy 評(píng)論0 收藏0
  • 前端常用代碼片段(四)

    摘要:盡量避免使用表達(dá)式又稱動(dòng)態(tài)屬性。使用計(jì)算數(shù)組中的重復(fù)項(xiàng)如果你想計(jì)算數(shù)組中的每個(gè)值有多少重復(fù)值,也可以快速幫到你。 前端常用代碼片段(一) 點(diǎn)這里前端常用代碼片段(二) 點(diǎn)這里前端常用代碼片段(三) 點(diǎn)這里前端常用代碼片段(四) 點(diǎn)這里前端常用代碼片段(五) 點(diǎn)這里前端常用代碼片段(六) 點(diǎn)這里 1.簡(jiǎn)述一下你對(duì)HTML語義化的理解?并寫出一段語義化的HTML? 語義化是指根據(jù)內(nèi)容的結(jié)...

    worldligang 評(píng)論0 收藏0
  • 優(yōu)雅地寫css

    摘要:在規(guī)則聲明的左大括號(hào)前加上一個(gè)空格。規(guī)則聲明之間用空行分隔開。根據(jù)屬性的重要性順序書寫。因此私有在前,標(biāo)準(zhǔn)在后的寫法是考慮到了以后可能會(huì)出現(xiàn)的問題。且最好盡量減少?zèng)]有實(shí)際作用的冗余的屬性。 https://csswizardry.com/2013/...https://css-tricks.com/bem-101/https://www.smashingmagazine....htt...

    Kyxy 評(píng)論0 收藏0
  • vscode常用插件【全了】

    摘要:插件集待補(bǔ)充。。。同時(shí),它還包含了用于轉(zhuǎn)換為格式和生成數(shù)據(jù)模式的選項(xiàng)用于壓縮合并和文件的應(yīng)用程序。它提供了大量自定義的設(shè)置,以及自動(dòng)壓縮保存并導(dǎo)出為文件的選項(xiàng)。修改文本的更多命名格式,包括駝峰命名下劃線分隔命名,命名以及命名等切換漂亮的主題 插件集 待補(bǔ)充。。。 20180903 文件 【Path Intellisense】 自動(dòng)補(bǔ)全路徑 瀏覽器 【Open-In-Browser】在...

    kyanag 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<