React 中style的使用

來源:互聯網
上載者:User

    React中style的使用和直接在HTML中使用有些不同,第一,React中必須是style="opacity:{this.state.opacity};"這種寫法,第二如果多個style格式如下,多個style中間使用逗號分割

var divStyle = {  color: 'white',  backgroundImage: 'url(' + imgUrl + ')',  WebkitTransition: 'all', // note the capital 'W' here  msTransition: 'all' // 'ms' is the only lowercase vendor prefix};


但是在html中我們通常直接使用,多個style中間使用分號;

    <div  style="backgroundColor:#FFFF90; color:#FFFFFF">white text2</div>
    <!-- div標籤內使用style屬性設定字型顏色 -->
    
     <span  style="backgroundColor:#FFFF90" ><a style="color:#FF00FF"  href="http://www.baidu.com" >nihao</a> </span>

 



程式碼範例給出一個表格中文本的顏色和文字框背景顏色的樣本:

</pre><pre name="code" class="html"><!DOCTYPE html><html>  <head>    <meta charset="utf-8">    <script src="../build/react.js"></script>    <script src="../build/JSXTransformer.js"></script><script src="../build/react-bootstrap/react-bootstrap.min.js" type="text/javascript"></script><link rel="stylesheet" href="../build/bootstrap/css/bootstrap.min.css">  </head>  <body>    <div id="example"></div><script type="text/jsx">var Table = ReactBootstrap.Table;        var TableDemo =  React.createClass({    render: function() {  var textColor = "#CC0000";  var bgColor = "#00CC00";  return (            <Table striped bordered condensed hover>            <thead>              <tr>                <th>ID</th>                <th>First Name</th>                <th>Last Name</th>                <th>Username</th>              </tr>            </thead>            <tbody>            <tr>              <td style={{color: textColor}}>1textColor</td>              <td style={{color: textColor,backgroundColor:'#00CC00'}}>MarkColorAndbgColor</td>              <td style={{backgroundColor:bgColor}}>OttobgColor</td>              <td><a href="http://www.baidu.com" style={{color: '#CC0000'}}>HrefColor</a></td>            </tr>              <tr>              <td>2</td>              <td>Jacob</td>              <td style={{backgroundColor:'#00CC00'}} > <a href="http://www.baidu.com" style={{color: '#CC0000'}}>HrefColorAndbgColor</a> </td>              <td>NameFull2</td>            </tr>            <tr>              <td>3</td>              <td colSpan="2">Larry the Bird3Column</td>              <td>@twitter</td>            </tr>            </tbody>          </Table>  );}    });    React.render(<TableDemo/>, document.body);    </script>  </body></html>


最終效果圖如下:


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.