Bootstrap 은 carousel.js 프레임 워 크 를 기반 으로 한 라운드 맵 효 과 를 실현 합 니 다.

본 고의 실례 는 여러분 에 게 Bootstrap 윤 방도 효과 가 전 시 된 구체 적 인 코드 를 공유 하 였 으 며,여러분 에 게 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.
성명 식 트리거 에 사용 할 데이터-*속성
1.data-ride:최 외층 용기 에 작용 하고 고정 값:carousel
2.data-target:class=carousel-indicators 의 모든 하위 요소 li 에 작용 하여 그 요 소 를 클릭 하여 윤 방 하 는 것 을 표시 합 니 다.
3.data-slide:앞 페이지 와 뒤 페이지 를 넘 기 는 두 개의 a 링크 에 작용 합 니 다.prev 는 앞 페이지 를 넘 기 고 next 는 뒤 페이지 를 넘 기 는 것 을 표시 합 니 다.
4.data-slide-to:class=carousel-indicators 의 모든 하위 요소 li 에 대응 하 는 li 요소 에 대응 하 는 그림 애니메이션 프레임 의 아래 표 시 를 표시 하고 0 부터 시작 합 니 다.
5.data-interval:윤 번 도 자동 윤 방 대기 시간,false 이면 자동 윤 방 되 지 않 습 니 다.기본 값 은 5000 ms 입 니 다.
6.data-pause:휠 맵 에 마 우 스 를 멈 출 지 여 부 를 지정 하고 떠 난 후에 도 자동 으로 라운드 방송 을 계속 합 니 다.
7.data-wrap:라운드 지속 여 부 를 지정 합 니 다.
라운드 맵 코드 구현:

<!Doctype html>
<html>
 <head>
  <title>    -bootstrap    --     -    </title>

  <!-- meta -->
  <meta http-equiv="viewport" content="width=device-width, initial-scale=1">
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

  <!-- ICON Link -->
  <link rel="shorticon" type="image/x-icon" href="Images/webicon.ico" rel="external nofollow" rel="external nofollow" />
  <link rel="icon" type='image/x-icon' href="Images/webicon.ico" rel="external nofollow" rel="external nofollow" />

  <!--Bootstrap CSS Link-->
  <link rel="stylesheet" href="bootstrap/css/bootstrap.min.css" rel="external nofollow" />
  <link rel="stylesheet" href="bootstrap/css/bootstrap-theme.css" rel="external nofollow" />

  <!-- Bootstrap JS and JQuery JS Link -->
  <script src="JS/jquery.min.js"></script>
  <script src="bootstrap/js/bootstrap.min.js"></script>

 </head>
 <body>
  <!--         -->
  <div class="carousel" id="carouselcontainer" data-ride="carousel" style="background-color: rgba(128, 128, 128, 0.42);margin-top: 10%;width: 100%;height:658px;">
   <ol class="carousel-indicators">
    <li class="active" data-target="#carouselcontainer" data-slide-to="0"></li>
    <li data-target="#carouselcontainer" data-slide-to='1'></li>
    <li data-target="#carouselcontainer" data-slide-to="2"></li>
    <li data-target="#carouselcontainer" data-slide-to="3"></li>
   </ol>
   <div class="carousel-inner">
    <div class="item active">
     <a href="javascript:void(0);" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >
      <img src="Images/1.png" title="     1" style="width: 100%;height: 658px;" />
     </a>
    </div>
    <div class="item">
     <a href="javascript:void(0);" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >
      <img src="Images/1.jpg" title="     2" style="width: 100%;height: 658px;" />
     </a>
    </div>
    <div class="item">
     <a href="javascript:void(0);" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >
      <img src="Images/2.jpg" title="     3" style="width: 100%;height: 600px;" />
     </a>
    </div>
    <div class="item">
     <a href="javascript:void(0);" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >
      <img src="Images/3.jpg" title="     4" style="width: 100%;height: 600px;" />
     </a>
    </div>
   </div>
   <div class="left carousel-control" href="#carouselcontainer" rel="external nofollow" rel="external nofollow" data-slide="prev">
    <span class="glyphicon glyphicon-chevron-left"></span>
   </div>
   <div class="right carousel-control" href="#carouselcontainer" rel="external nofollow" rel="external nofollow" data-slide="next">
    <span class="glyphicon glyphicon-chevron-right"></span>
   </div>
  </div>
 </body>
</html>
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기