Title1

Title2

Title3

10-3 實做

  1. 請先連上FILEZILLA
    下載檔案 FileZilla 3.9.0.5 可攜版
  2. 開啟notepad++
    NotePad++(http://notepad-plus-plus.org/ )
  3. 開啟一個新檔,存檔「本地端根目錄/owl-carousel.html」
  4. 複製空白架構
    <!DOCTYPE html>
    <html lang="zh-TW">
      <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>OWL.CAROUSEL Template</title>
     
        <!-- Bootstrap -->
        <link href="css/bootstrap.min.css" rel="stylesheet">
     
        <!-- HTML5 shim and Respond.js 讓 IE8 支援 HTML5 元素與媒體查詢 -->
        <!-- 警告:Respond.js 無法在 file:// 協定下運作 -->
        <!--[if lt IE 9]>
          <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
          <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
        <![endif]-->
     
        <!-- jQuery (Bootstrap 所有外掛均需要使用) -->
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
        <!-- 依需要參考已編譯外掛版本(如下),或各自獨立的外掛版本 -->
        <script src="js/bootstrap.min.js"></script>
     
      </head>
      <body>
        <h1>OWL.CAROUSEL Template</h1>
      </body>
    </html>

     
  5. 在首頁的導航增加一個項目
    
                <li><a href="owl-carousel.html">旋轉木馬</a></li>


    複製首頁的「NAV導航」至 「owl-carousel.html」
        <!--導覽列 start-->
        <nav class="navbar navbar-default" role="navigation">
          <div class="container">
            <!-- Brand and toggle get grouped for better mobile display -->
            <div class="navbar-header">
              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
                <span class="sr-only">Toggle navigation</span>
                <span class="icon-bar"></span>
                <span class="icon-bar"></span>
                <span class="icon-bar"></span>
              </button>
              <a class="navbar-brand" href="index.html">網站名稱</a>
            </div>
    
            <!-- Collect the nav links, forms, and other content for toggling -->
            <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
              <ul class="nav navbar-nav navbar-right">
                <li><a href="index.html">首頁</a></li>
                <li><a href="owl-carousel.html">旋轉木馬</a></li>
                <li><a href="news.html">最新消息</a></li>
                <li><a href="about_us.html">關於我們</a></li>
                <li><a href="prod.html">商品展示</a></li>
                <li><a href="contact.html">聯絡我們</a></li>
    
              </ul>
            </div><!-- /.navbar-collapse -->
          </div><!-- /.container-fluid -->
        </nav><!-- /.nav -->
  6. 複製index.html 的縮圖列表
    
      	<div class="container">
      		<div class="row">
    
      		  <div class="col-xs-6 col-md-3">
        			<a href="#" class="thumbnail">
        			  <img src="http://fakeimg.pl/800x600/">
        			</a>
      		  </div>
    
      		  <div class="col-xs-6 col-md-3">
        			<a href="#" class="thumbnail">
        			  <img src="http://fakeimg.pl/800x600/">
        			</a>
      		  </div>
    
      		  <div class="col-xs-6 col-md-3">
        			<a href="#" class="thumbnail">
        			  <img src="http://fakeimg.pl/800x600/">
        			</a>
      		  </div>
    
      		  <div class="col-xs-6 col-md-3">
        			<a href="#" class="thumbnail">
        			  <img src="http://fakeimg.pl/800x600/">
        			</a>
      		  </div>
    
      		  <div class="col-xs-6 col-md-3">
        			<a href="#" class="thumbnail">
        			  <img src="http://fakeimg.pl/800x600/">
        			</a>
      		  </div>
    
      		  <div class="col-xs-6 col-md-3">
        			<a href="#" class="thumbnail">
        			  <img src="http://fakeimg.pl/800x600/">
        			</a>
      		  </div>
    
      		  <div class="col-xs-6 col-md-3">
        			<a href="#" class="thumbnail">
        			  <img src="http://fakeimg.pl/800x600/">
        			</a>
      		  </div>
    
      		  <div class="col-xs-6 col-md-3">
        			<a href="#" class="thumbnail">
        			  <img src="http://fakeimg.pl/800x600/">
        			</a>
      		  </div>
    
      	</div>

     
  7. 下載:http://www.owlcarousel.owlgraphic.com/assets/owlcarousel/assets/owl.carousel.min.css  => 本地端根目錄/class/owlcarousel
    下載:http://www.owlcarousel.owlgraphic.com/assets/owlcarousel/assets/owl.theme.default.min.css => 本地端根目錄/class/owlcarousel
    下載:http://www.owlcarousel.owlgraphic.com/assets/owlcarousel/owl.carousel.js => 本地端根目錄/class/owlcarousel
    
      <!-- Owl Stylesheets -->
      <link rel="stylesheet" href="class/owlcarousel/owl.carousel.min.css">
      <link rel="stylesheet" href="class/owlcarousel/owl.theme.default.min.css">
    
      <script src="class/owlcarousel/owl.carousel.js"></script>
    
      <script type="text/javascript">
        $(document).ready(function(){
          $('.owl-carousel').owlCarousel({
              loop:true,
              margin:10,
              nav:true,
              dots:false,
              responsive:{
                  0:{
                      items:1
                  },
                  600:{
                      items:2
                  },
                  1000:{
                      items:3
                  }
              }
          })
        });
    
      </script>

  8.  

  9.  

  10.  

  11.  
  12.