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

前端開發方法有哪些

發布時間: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()

常用的字元串操作

閱讀全文

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

熱點內容
票房的計算方法 瀏覽:568
少兒象棋教學方法探討 瀏覽:890
口腔黏液囊腫治療方法 瀏覽:412
什麼是密度測量方法 瀏覽:588
衛生間做防水的正確方法 瀏覽:547
快速認識圈子的方法 瀏覽:252
前臂肌肉鍛煉方法 瀏覽:625
爆炸掛鉤正確掛餌方法 瀏覽:157
兒童過敏了起包怎麼辦最快方法 瀏覽:547
避之寶的使用方法 瀏覽:1002
hvlp噴槍使用方法 瀏覽:265
狗吃糖果的正確方法 瀏覽:491
阻力對物體運動的實驗研究方法 瀏覽:470
生肖位數的計算方法 瀏覽:171
手足蠟膜使用方法 瀏覽:451
宇宙直徑計算方法 瀏覽:679
用麵粉簡單的方法可以做什麼手工 瀏覽:754
入職高中有什麼好方法 瀏覽:800
生活中有什麼除蟎的好方法 瀏覽:191
樂視安裝系統在哪裡設置方法 瀏覽:633