W3.CSS- 构建移动应用程序


电影 2014

冷冻

人们对动画的反应很荒谬。


我们星球上的错

触感、抓握力强,制作精良。


复仇者

漫威和迪士尼取得了巨大成功。

页脚


创建基本移动页面

W3.CSS 专业版非常适合移动应用程序。它很小而且速度非常快。

示例

<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.91xjr.com/w3css/4/ w3pro.css">
<body>

<!-- Content here -->

</body>
</html>

亲自试一试»



添加内容

示例(使用经典 HTML 元素)

<div class="w3-container">
  <h1>Movies 2014</h1>
</div>

<div class="w3-cell-row">
  <div class="w3-cell">
    <img src="img_avatar.jpg">
  </div>
  <div class="w3-cell w3-container">
    <h3>Frozen</h3>
      <p>The response to the animations was ridiculous.</p>
  </div>
</div>

<div class="w3-container">
  <h3>Footer</h3>
</div>
亲自试一试»

示例(使用语义 HTML 元素)

<header class="w3-container">
  <h1>Header</h1>
</header>

<div class="w3-cell-row">
  <div class="w3-cell">
    <img src="img_avatar.jpg">
  </div>
  <div class="w3-cell w3-container">
    <h3>Frozen</h3>
      <p>The response to the animations was ridiculous.</p>
  </div>
</div>

<footer class="w3-container">
  <h3>Footer</h3>
</footer>

</body>
</html>

亲自试一试»


添加颜色主题

示例

<link rel="stylesheet" href="https://www.91xjr.com/lib/w3-theme-blue.css">
<link rel="stylesheet" href="https://www.91xjr.com/lib/w3-theme-red.css">
亲自试一试»

阅读有关颜色主题的更多信息W3.CSS颜色主题


添加更多样式

示例

<img class="w3-circle" src="img_avatar.jpg" alt="avatar">

<h3 class="w3-text-theme">Frozen</h3>
亲自试一试»

添加侧边导航

示例

<nav class="w3-sidebar w3-bar-block w3-card" style="width:30%">
<div class="w3-red">
  <a href="javascript:void(0)" onclick="closeSidebar()"
  class="w3-button w3-display-topright w3-xlarge">X</a>
    <div class="w3-padding-large w3-center">
      <img class="w3-circle" src="img_avatar.jpg" alt="avatar">
   </div>
  </div>
<a class="w3-bar-item w3-button" href="#">Home</a>
<a class="w3-bar-item w3-button" href="#">Friends</a>
<a class="w3-bar-item w3-button" href="#">Messages</a>
</nav>

<script>
function openSidebar() {
  document.getElementById("mySidebar").style.display = "block";
}

function closeSidebar() {
  document.getElementById("mySidebar").style.display = "none";
}
</script>
亲自试一试»

固定导航、页眉和页脚

示例

<header class="w3-top">

<nav class="w3-top">

<footer class="w3-bottom">
亲自试一试»