저는 아직 JS를 배우지 않은 초보이기 때문에
저는 부트스트랩을 사용했습니다. 코드를 웹스톰에 직접 복사하세요.
아래에서는 내 과제 중 하나를 사용하여 각 부분의 의미를 실제로 설명하겠습니다.(선생님이 이 코드의 의미를 가르쳐주지 않으셨기 때문에 저 스스로 실수를 이해할 수 있습니다.)
"내 남자친구가 가을 새 옷을 입었어요"는 총 3개의 작은 점이 있는 회전목마입니다. 즉, 세 장의 사진을 왼쪽 및 오른쪽 화살표를 사용하여 왼쪽 및 오른쪽으로 뒤집으세요.
다음으로 소스 코드를 제시하고, 코드 뒤의 각 부분을 설명합니다
<div class="col-md-9 lunbo"> <br> <div id="carousel-example-generic" class="carousel slide" data-ride="carousel" style="margin-top: 1.4285rem"> <br> <!-- Indicators --><br> <ol class="carousel-indicators" style="margin-left: -20rem"> <br> <li data-target="#carousel-example-generic" data-slide-to="0" class="active"> 这里规定播放顺序 3个li代表3个小点 点一个小点 就是一张图<br> <li data-target="#carousel-example-generic" data-slide-to="1"> <br> <li data-target="#carousel-example-generic" data-slide-to="2"> <br> </ol> <br><br> <!-- Wrapper for slides --><br> <div class="carousel-inner"> 这里是要播放的图 3张<br> <div class="item active">这里的active 对应上面active的那个小圆点<br> <img src="%E4%B8%89%E7%BB%84%E9%A1%B9%E7%9B%AE/PC/PC%E9%A6%96%E9%A1%B5/lunbo1.jpg" alt="JS를 배우지 않고도 부트스트랩을 사용하면 캐러셀 차트를 실용적으로 적용할 수 있습니다." style="max-width:90%"><br> <div class="carousel-caption"></div> <br> </div> <br> <div class="item"> <br> <img src="%E4%B8%89%E7%BB%84%E9%A1%B9%E7%9B%AE/PC/PC%E9%A6%96%E9%A1%B5/lunbo2.jpg" alt="JS를 배우지 않고도 부트스트랩을 사용하면 캐러셀 차트를 실용적으로 적용할 수 있습니다." style="max-width:90%"><br> <div class="carousel-caption"></div> <br> </div> <br> <div class="item"> <br> <img src="%E4%B8%89%E7%BB%84%E9%A1%B9%E7%9B%AE/PC/PC%E9%A6%96%E9%A1%B5/lunbo3.jpg" alt="JS를 배우지 않고도 부트스트랩을 사용하면 캐러셀 차트를 실용적으로 적용할 수 있습니다." style="max-width:90%"><br> <div class="carousel-caption"></div> <br> </div> <br> </div> <br><br> <!-- Controls --> 这里就是那左右两个箭头<br> <a class="left carousel-control" href="#carousel-example-generic" data-slide="prev">上翻<br> <span class="glyphicon glyphicon-chevron-left"></span><br> </a><br> <a class="right carousel-control" href="#carousel-example-generic" data-slide="next">下翻<br> <span class="glyphicon glyphicon-chevron-right"></span><br> </a><br> </div> <br> </div>사진 2장만 필요하다면 직접 코드를 바꾸고 사진 1장과 점 1장을 삭제하고 거기에 점을 바꿔보세요
data-slide-to="0" 里面的数字 这里的0 只是举例数字 具体情况 自行判断그렇습니다