您好,登錄后才能下訂單哦!
html5的新加的標簽:details的用法,兩種方式的介紹,一種是直接css的實現,一種是js+css的實現。
<header>導航</header> <nav>菜單</nav> <article>內容</article> <footer> 隱藏腳注 <details>頁面生成于2015-7-9</details><br/> 顯示腳注 <details open="open"> <summary>頁面說明:</summary> 頁面生成于2015/7/9 summary是對details的詳細說明 </details> <span onClick="span1_click()">js腳本控制交互元素的使用腳注</span> <details id="details1">本頁面生成時間:2015-7-9 11:27</details> <script type="text/javascript"> function span1_click(){ var objD = document.getElementById("details1"); var attD = objD.getAttribute("open"); if(attD != "open"){ objD.setAttribute("open","open"); }else{ objD.removeAttribute("open"); } } </script> </footer>
通用的css樣式的實現:
<style type="text/css"> header, nav, article,footer{ border:1px solid #666; padding:5px; } header{ width:500px; } nav{ float:left; width:60px; height:100px; } article{ float:left; width:428px; height:100px; } footer{ clear:both; width:500px; } details{ overflow:hidden; height:0px; padding-left:200px; position:relative; display:block; } details[open]{ height:auto; } span{ cursor:pointer; } </style>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。