Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

ksw_devlog

TIL 02.07 - 최종 프로젝트 1주차 본문

TIL

TIL 02.07 - 최종 프로젝트 1주차

kimcoach 2023. 2. 7. 17:42
[react-slick] carousel / 배너 만들기
설치

-     npm i react-slick / yarn add react-slick

-     css import

import "slick-carousel/slick/slick-theme.css";
import "slick-carousel/slick/slick.css";

 

사용하기
import React from "react";
import Slider from "react-slick";
import "slick-carousel/slick/slick-theme.css";
import "slick-carousel/slick/slick.css";

function Home() {
  const settings = {
    dots: true,
    infinite: true,
    speed: 5000,
    slidesToShow: 1,
    slidesToScroll: 1,
    // autoplay: true,
    cssEase: "linear",
    autoplaySpeed: 0,
  };

  return (
      <div style={{ height: "200px", backgroundColor: "pink" }}>
        <h2>Single Item</h2>
        <Slider {...settings}>
          <div>
            <h3>slide 1</h3>
          </div>
          <div>
            <h3>slide 2</h3>
          </div>
          <div>
            <h3>slide 3</h3>
          </div>
          <div>
            <h3>slide 4</h3>
          </div>
          <div>
            <h3>slide 5</h3>
          </div>
        </Slider>
      </div>
  );
}

export default Home;

 

 

 

 

'TIL' 카테고리의 다른 글

TIL 02.09 - 최종 프로젝트 1주차  (0) 2023.02.09
TIL 02.08 - 최종 프로젝트 1주차  (0) 2023.02.08
TIL 02.06 - 최종 프로젝트 1주차  (0) 2023.02.07
WIL 14주차  (0) 2023.02.06
TIL 02.03  (0) 2023.02.05