> 웹 프론트엔드 > HTML 튜토리얼 > 스와이프의 기본 사용법 (4)

스와이프의 기본 사용법 (4)

黄舟
풀어 주다: 2017-01-20 15:12:44
원래의
1085명이 탐색했습니다.

먼저 기본 스와이퍼 페이지를 구축해야 합니다.
물론 다운로드한 프레임워크 파일을 미리 인용해 두는 것도 잊지 마세요.
이 장에서는 컨테이너의 너비와 높이 설정을 추가했습니다

<!doctype html>
<html>
    <head>
        <title>在slide之间加上间隙</title>
        <meta charset="utf-8">
        <link rel="stylesheet" href="swiper.min.css">
        <style>
            body{
                margin:0;
                padding:0;
            }
            .swiper-Container{
                width:500px;
                height:300px;
                margin:20px auto;
            }
            .swiper-slide{
                text-align:center;
                font-size:18px;
                display:flex;
                justify-content:center;
                align-items:center;
                background:#F2F2F2;
            }
        </style>
    </head>
로그인 후 복사


이후에도 첫 번째 강의 내용에 따라 기본 스와이퍼 페이지 레이아웃을 구현했습니다

 <body>
        <div class="swiper-container">
            <div class="swiper-wrapper">
                <div class="swiper-slide">第一页</div>
                <div class="swiper-slide">第二页</div>
                <div class="swiper-slide">第三页</div>
                <div class="swiper-slide">第四页</div>
                <div class="swiper-slide">第五页</div>
            </div>
            <div class="swiper-pagination"></div>
로그인 후 복사

                                                         🎜>이렇게 하면 각 슬라이드 페이지 중간에 공백이 추가됩니다.

위는 swiper(4)의 기본 사용법입니다. 더 많은 관련 내용은 PHP 중국어 홈페이지(www.php.cn)를 참고해주세요!



관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿