본문 바로가기

Web/JQuery

[HTML] 회전목마 / carousel / 슬라이딩 / 가로 스크롤 (BOOTSTRAP/JQuery)

반응형

 

https://www.codeply.com/go/bp/123662

 

Codeply

www.codeply.com

 

https://www.python2.net/questions-1035598.htm

 

html - 부트 스트랩 행에서 가로 스크롤 가능을 만들려면 어떻게해야합니까? (2 열)

한 행을 사용하면 작동합니다. 이 스크립트를 참조하십시오 : html : 1 2 3 4 5 6 7 8 9 css : .testimonial-group > .row { overflow-x: auto; flex-wrap: nowrap; } 다음과 같은 결과 : 그러나 두 개의 행을 사용하면 작동하

www.python2.net

더보기

html - 부트 스트랩 행에서 가로 스크롤 가능을 만들려면 어떻게해야합니까?

한 행을 사용하면 작동합니다. 이 스크립트를 참조하십시오 :}

<div class="testimonial-group">
  <div class="row">
    <div class="col-md-4">1</div>
    <div class="col-md-4">2</div>
    <div class="col-md-4">3</div>
    <div class="col-md-4">4</div>
    <div class="col-md-4">5</div>
    <div class="col-md-4">6</div>
    <div class="col-md-4">7</div>
    <div class="col-md-4">8</div>
    <div class="col-md-4">9</div>
  </div>
</div>
 
<style>
  .testimonial-group > .row {
    overflow-x: auto;
    flex-wrap: nowrap;
  }
</style>
 

https://www.andismith.com/blogs/2012/05/css3-flexbox-carousel/

 

CSS3 Flexbox Carousel - Andi Smith

Carousels are one of the most common components web developer’s build. As other trends come and go, carousels tend to stay. Recently I’ve been using the nth-child CSS pseudo selector when building CSS3 demos for my “Introduction to CSS3″ series on

www.andismith.com

 

https://pythonq.com/so/css/467106

 

css - Flexbox를 사용하여 가로 스크롤 회전 목마를 만드는 방법은 무엇입니까? - IT 툴 넷

css - Flexbox를 사용하여 가로 스크롤 회전 목마를 만드는 방법은 무엇입니까? 출처 css flexbox horizontal-scrolling

pythonq.com

 

반응형