Bootstrap4 carousel diagram

  #Learning: CSS3 animation learning is very interesting and I like it very much; through the learning of CSS3 animation, I feel that I am more suitable for in-depth learning of the front-end.
  In the past week, a web page for the assessment requirements was produced, which reflected many problems. Compared to other companions, I did not imitate it, but tried to make one myself. Maybe the reserve of knowledge points was not enough, or maybe I checked, the browsed pages were not enough, so the made pages were not beautiful Gao, I took the time to find some cool animations about css3 and added it. It feels a bit grandstanding. The most important point is that the details are not in place. This is the biggest problem. The above are the problems exposed in css3 learning. The elder sister recommended me to study some carousels, but I found the carousel in Bootstrap4.

<div id="demo" class="carousel slide" data-ride="carousel">
 
  <!-- 指示符 -->
  <ul class="carousel-indicators">
    <li data-target="#demo" data-slide-to="0" class="active"></li>
    <li data-target="#demo" data-slide-to="1"></li>
    <li data-target="#demo" data-slide-to="2"></li>
  </ul>
 <a class="carousel-control-prev" href="#demo" data-slide="prev">
    <span class="carousel-control-prev-icon"></span>
  </a>
  <a class="carousel-control-next" href="#demo" data-slide="next">
    <span class="carousel-control-next-icon"></span>
  </a>

These two parts may be more important.
Insert picture description here
  #生活上: Daily life is okay, there is not much worry, but sometimes energy is a little bit unable to keep up, lack of sleep at night, but morning exercises should be cancelled, it should be better to strengthen the body exercise is still very important.
  Come on! keep it up!

Guess you like

Origin blog.csdn.net/qq_45954445/article/details/103556356