導航:首頁 > 知識科普 > 前端開發方法有哪些

前端開發方法有哪些

發布時間:2023-06-02 09:30:24

A. 前端開發的基本方法

CSS部分

盒子邊傾斜

clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);

禁止點擊事件/滑鼠事件「穿透」

div * { pointer-events: none; /*鏈接啊,點擊事件啊,都沒有效果了*/ }

用來控制元素在移動設備上使用滾動回彈效果

.main{
-webkit-overflow-scrolling: touch;
}

可解決在IOS中使用overflow:auto 形成的滾動條,滾動不流暢的情況

文字漸變效果

.text-gradient{ background-image: linear-gradient(135deg, deeppink, deepskyblue);
-webkit-background-clip: text; color: transparent;
}

css三角形

#triangle-up { width: 0; height: 0; border-left: 50px solid transparent; border-right: 50px solid transparent; border-bottom: 100px solid red;

}

實現圓弧

clip-path: ellipse(80%60% at50%40%);

JS部分

JavaScript中檢測數組的方法

(1)、typeof操作符

這種方法對一些常用的類型檢查沒有問題,但對array和null 都判斷為object
(2)、instanceof操作符

這個操作符是檢測對象的原型鏈是否指向構造函數的prototype對象的
(3)、對象的constructor屬性

const arr = []

console.log(arr.constructor === Array) // true

(4)、Object.prototype.toString

constarr=[]console.log(Object.prototype.toString.call(arr)==='[objectArray]')//true

(5)、Array.isArray()

常用的字元串操作

閱讀全文

與前端開發方法有哪些相關的資料

熱點內容
慢性皮膚病康復訓練方法 瀏覽:284
上課如何變積極的方法 瀏覽:443
印章質量檢測與規范方法 瀏覽:497
蘋果設置設備在哪裡設置方法 瀏覽:936
棉花的種植密度和方法 瀏覽:25
組織行為學態度測量方法 瀏覽:647
天際隔水燉使用方法 瀏覽:716
肺結節有什麼方法解決嗎 瀏覽:128
成衣製作方法分析 瀏覽:783
香樟種植方法 瀏覽:106
泮托拉唑的食用方法 瀏覽:807
解決解決問題的策略方法 瀏覽:725
熏魚乾的食用方法 瀏覽:503
gridview使用方法 瀏覽:965
用什麼方法檢查是否肌萎 瀏覽:95
治療白斑用什麼方法最好 瀏覽:589
避震行為的正確方法 瀏覽:496
如何識別精密電阻有哪些識別方法 瀏覽:764
建築內部管道安裝方法 瀏覽:341
平安燈安裝方法 瀏覽:894