91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

js類庫styled-components入門實例分析

發布時間:2022-07-14 14:06:31 來源:億速云 閱讀:163 作者:iii 欄目:開發技術

這篇文章主要介紹“js類庫styled-components入門實例分析”,在日常操作中,相信很多人在js類庫styled-components入門實例分析問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”js類庫styled-components入門實例分析”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

    styled-components 是什么?

    styled-components 是一個常用的 css in js 類庫。和所有同類型的類庫一樣,通過 js 賦能解決了原生 css 所不具備的能力,比如變量、循環、函數等。

    相對于其他預處理有什么優點?

    • 諸如 sass&less 等預處理可以解決部分 css 的局限性,但還是要學習新的語法,而且需要對其編譯,其復雜的 webpack 配置也總是讓開發者抵觸。

    • 如果有過sass&less的經驗,也能很快的切換到styled-components,因為大部分語法都類似,比如嵌套,& 繼承等, styled-componens 很好的解決了學習成本與開發環境問題,很適合 React 技術棧 && React Native 的項目開發。

    解決了什么問題?

    • className 的寫法會讓原本寫css的寫法十分難以接受

    • 如果通過導入css的方式 會導致變量泄露成為全局 需要配置webpack讓其模塊化

    • 以及上面提到的解決了原生 css 所不具備的能力,能夠加速項目的快速開發

    安裝

    npm install --save styled-components

    編輯器智能提示

    2018-06-11更新

    • webstorm需要安裝 styled-component 插件

    • vscode已支持智能提示

    最基礎的使用

    import styled from 'styled-components'
    const Title = styled.h2`
        font-size: 1.5em;
        text-align: center;
        color: palevioletred;
    `;
    // 相當于  const Title = styled.h2(xx)
    const Wrapper = styled.section`
        padding: 4em;
        background: papayawhip;
    `;
        render () {
            return (
                <Wrapper>
                    <Title>Hello styled-components</Title>
                </Wrapper>
            )
        }

    此時我們可以看到控制臺中輸出了一個隨機的className,這是styled-components幫我們完成的. 注意: 組件名要以大些開頭 不然會被解析成普通標簽

    傳遞props

    const Button = styled.button`
        background: ${props => props.primary ? 'palevioletred' : 'white'};
        color: ${props => props.primary ? 'white' : 'palevioletred'};
        font-size: 1em;
        margin: 1em;
        padding: 0.25em 1em;
        border: 2px solid palevioletred;
        border-radius: 3px;
    `
    render(
        <div>
            <Button>Normal</Button>
            <Button primary>Primary</Button>
        </div>
    );

    在組件傳遞的props都可以在定義組件時獲取到,這樣就很容易實現定制某些風格組件

    props高級用法

    設置默認值,在未設定必須傳值的情況下我們會給一個默認值(defaultProps)

    export default class ALbum extends React.Component {
        constructor (props) {
            super(props)
            this.state = {
                // 接收傳遞的值
                imgSrc: props.imgSrc
            }
        }
        render () {
            const {imgSrc} = this.state
            return (
                <Container imgSrc={imgSrc}>
                </Container>
            )
        }
    }
    // 在這里是可以拿到props的 
    const Container = styled.div`
        background-size: cover;
        background-image: url(${props =>  props.imgSrc});
        width: 100%;    
        height: 300px;
    `
    // 當然沒傳值也沒關系  我們設置默認值
    Container.defaultProps = {
        imgSrc: Cover
    }

    塑造組件

    這個非常有用 你可能會遇到一些原本就已經是組件了 但是你要為他添加一些樣式,這時候該怎么辦呢 ?

    // 傳遞className 在react-native 中要使用 style
    const Link = ({className , children}) => (
        <a className={className}>
            {children}
        </a>
    )
    const StyledLink = styled(Link)`
        color: palevioletred;
    `
    render(
        <div>
            <Link>普通組件</Link>
            <StyledLink>有顏色嗎?</StyledLink>
        </div>
    );

    組件樣式繼承

    const Button = styled.button`
        color: palevioletred;
        font-size: 1em;
        margin: 1em;
        padding: 0.25em 1em;
        border: 2px solid palevioletred;
        border-radius: 3px;
    `;
    const TomatoButton = Button.extend`
        color: tomato;
        border-color: tomato;
    `;
    // TomatoButton 部分樣式繼承自 Button 這種情況下不會生成兩個class

    改變組件標簽

    在閑的蛋疼的情況下 我們想要改變組件的標簽 比如把 button 變成 a 標簽

    // 利用上面定義的 Button 組件 調用 withComponent 方法
    const Link = Button.withComponent('a')

    維護其他屬性

    在某種情況下,我們可能需要用到第三方庫樣式,我們可以使用這個方法輕松達到

    const Input = styled.input.attrs({
        // 定義靜態 props
        type: 'password',
        // 沒傳默認使用 1em
        margin: props => props.size || '1em',
        padding: props => props.size || '1em'
    })`
        color: palevioletred;
        font-size: 1em;
        border: 2px solid palevioletred;
        border-radius: 3px;
        // 動態計算props
        margin: ${props => props.margin};
        padding: ${props => props.padding}
    `
    render ( <Input size='1em'></Input>  <Input size='2em'></Input> )

    動畫

    動畫會生成一個隨機類名 而不會污染到全局

    import { keyframes } from 'styled-components'
    // CSS 動畫
    const rotate360 = keyframes`
        from {
            transform: rotate(0);
        }
        to {
            transform: rotate(360deg);
        }
    `
    const Rotate = Button.extend`
        animation: ${rotate360} 2s linear infinite;
    `
    render ( <Rotate>  ????  </Rotate> )

    到此,關于“js類庫styled-components入門實例分析”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

    向AI問一下細節

    免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

    AI

    汶川县| 永登县| 开阳县| 济宁市| 洪湖市| 德安县| 葵青区| 达日县| 苍山县| 延庆县| 南丹县| 金寨县| 泾川县| 黄山市| 定边县| 唐海县| 海宁市| 奉节县| 澄城县| 新民市| 泗水县| 邵阳县| 六盘水市| 读书| 镇沅| 喀喇| 武安市| 定边县| 长宁县| 淅川县| 正镶白旗| 呼伦贝尔市| 延吉市| 卫辉市| 扬中市| 和田县| 海林市| 喀什市| 鄂托克前旗| 凤山市| 巴东县|