Bootstrap 은 carousel.js 프레임 워 크 를 기반 으로 한 라운드 맵 효 과 를 실현 합 니 다.
5153 단어 Bootstrapcarousel.js윤파 도
성명 식 트리거 에 사용 할 데이터-*속성
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>
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Vue.js + SCSS + Bootstrap + MaterialDesign + TypeScript 개발 환경을 만들려고했습니다.SPA 앱을 만들게 되었기 때문에, Vue.js를 사용하려고 환경을 만들어 보았습니다. Docker에서 개발하고 싶었던 언어는 TypeScript, SCSS에서 Bootstrap을 MaterialDesign에서. D...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.