亚洲一区二区三区在线播放,伊人久久精品无码av一区,亚洲国产精品一区二区第一页免,无码aⅴ精品一区二区三区浪潮

Carousel

A slideshow component for cycling through elements—images or slides of text—like a carousel.

How it works

The carousel is a slideshow for cycling through a series of content, built with CSS 3D transforms and a bit of JavaScript. It works with a series of images, text, or custom markup. It also includes support for previous/next controls and indicators.

In browsers where the Page Visibility API is supported, the carousel will avoid sliding when the webpage is not visible to the user (such as when the browser tab is inactive, the browser window is minimized, etc.).

The animation effect of this component is dependent on the prefers-reduced-motion media query. See the reduced motion section of our accessibility documentation.

Please be aware that nested carousels are not supported, and carousels are generally not compliant with accessibility standards.

Example

Carousels don’t automatically normalize slide dimensions. As such, you may need to use additional utilities or custom styles to appropriately size content. While carousels support previous/next controls and indicators, they’re not explicitly required. Add and customize as you see fit.

The .active class needs to be added to one of the slides otherwise the carousel will not be visible. Also be sure to set a unique id on the .carousel for optional controls, especially if you’re using multiple carousels on a single page. Control and indicator elements must have a data-bs-target attribute (or href for links) that matches the id of the .carousel element.

Slides only

Here’s a carousel with slides only. Note the presence of the .d-block and .w-100 on carousel images to prevent browser default image alignment.

<div id="carouselExampleSlidesOnly" class="carousel slide" data-bs-ride="carousel">
  <div class="carousel-inner">
    <div class="carousel-item active">
      <img src="..." class="d-block w-100" alt="...">
    </div>
    <div class="carousel-item">
      <img src="..." class="d-block w-100" alt="...">
    </div>
    <div class="carousel-item">
      <img src="..." class="d-block w-100" alt="...">
    </div>
  </div>
</div>

With controls

Adding in the previous and next controls. We recommend using <button> elements, but you can also use <a> elements with role="button".

<div id="carouselExampleControls" class="carousel slide" data-bs-ride="carousel">
  <div class="carousel-inner">
    <div class="carousel-item active">
      <img src="..." class="d-block w-100" alt="...">
    </div>
    <div class="carousel-item">
      <img src="..." class="d-block w-100" alt="...">
    </div>
    <div class="carousel-item">
      <img src="..." class="d-block w-100" alt="...">
    </div>
  </div>
  <button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleControls" data-bs-slide="prev">
    <span class="carousel-control-prev-icon" aria-hidden="true"></span>
    <span class="visually-hidden">Previous</span>
  </button>
  <button class="carousel-control-next" type="button" data-bs-target="#carouselExampleControls" data-bs-slide="next">
    <span class="carousel-control-next-icon" aria-hidden="true"></span>
    <span class="visually-hidden">Next</span>
  </button>
</div>

With indicators

You can also add the indicators to the carousel, alongside the controls, too.

<div id="carouselExampleIndicators" class="carousel slide" data-bs-ride="carousel">
  <div class="carousel-indicators">
    <button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
    <button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1" aria-label="Slide 2"></button>
    <button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="2" aria-label="Slide 3"></button>
  </div>
  <div class="carousel-inner">
    <div class="carousel-item active">
      <img src="..." class="d-block w-100" alt="...">
    </div>
    <div class="carousel-item">
      <img src="..." class="d-block w-100" alt="...">
    </div>
    <div class="carousel-item">
      <img src="..." class="d-block w-100" alt="...">
    </div>
  </div>
  <button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide="prev">
    <span class="carousel-control-prev-icon" aria-hidden="true"></span>
    <span class="visually-hidden">Previous</span>
  </button>
  <button class="carousel-control-next" type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide="next">
    <span class="carousel-control-next-icon" aria-hidden="true"></span>
    <span class="visually-hidden">Next</span>
  </button>
</div>

With captions

Add captions to your slides easily with the .carousel-caption element within any .carousel-item. They can be easily hidden on smaller viewports, as shown below, with optional display utilities. We hide them initially with .d-none and bring them back on medium-sized devices with .d-md-block.

<div id="carouselExampleCaptions" class="carousel slide" data-bs-ride="carousel">
  <div class="carousel-indicators">
    <button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
    <button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="1" aria-label="Slide 2"></button>
    <button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="2" aria-label="Slide 3"></button>
  </div>
  <div class="carousel-inner">
    <div class="carousel-item active">
      <img src="..." class="d-block w-100" alt="...">
      <div class="carousel-caption d-none d-md-block">
        <h5>First slide label</h5>
        <p>Some representative placeholder content for the first slide.</p>
      </div>
    </div>
    <div class="carousel-item">
      <img src="..." class="d-block w-100" alt="...">
      <div class="carousel-caption d-none d-md-block">
        <h5>Second slide label</h5>
        <p>Some representative placeholder content for the second slide.</p>
      </div>
    </div>
    <div class="carousel-item">
      <img src="..." class="d-block w-100" alt="...">
      <div class="carousel-caption d-none d-md-block">
        <h5>Third slide label</h5>
        <p>Some representative placeholder content for the third slide.</p>
      </div>
    </div>
  </div>
  <button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="prev">
    <span class="carousel-control-prev-icon" aria-hidden="true"></span>
    <span class="visually-hidden">Previous</span>
  </button>
  <button class="carousel-control-next" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="next">
    <span class="carousel-control-next-icon" aria-hidden="true"></span>
    <span class="visually-hidden">Next</span>
  </button>
</div>

Crossfade

Add .carousel-fade to your carousel to animate slides with a fade transition instead of a slide.

<div id="carouselExampleFade" class="carousel slide carousel-fade" data-bs-ride="carousel">
  <div class="carousel-inner">
    <div class="carousel-item active">
      <img src="..." class="d-block w-100" alt="...">
    </div>
    <div class="carousel-item">
      <img src="..." class="d-block w-100" alt="...">
    </div>
    <div class="carousel-item">
      <img src="..." class="d-block w-100" alt="...">
    </div>
  </div>
  <button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleFade" data-bs-slide="prev">
    <span class="carousel-control-prev-icon" aria-hidden="true"></span>
    <span class="visually-hidden">Previous</span>
  </button>
  <button class="carousel-control-next" type="button" data-bs-target="#carouselExampleFade" data-bs-slide="next">
    <span class="carousel-control-next-icon" aria-hidden="true"></span>
    <span class="visually-hidden">Next</span>
  </button>
</div>

Add data-bs-interval="" to a .carousel-item to change the amount of time to delay between automatically cycling to the next item.

<div id="carouselExampleInterval" class="carousel slide" data-bs-ride="carousel">
  <div class="carousel-inner">
    <div class="carousel-item active" data-bs-interval="10000">
      <img src="..." class="d-block w-100" alt="...">
    </div>
    <div class="carousel-item" data-bs-interval="2000">
      <img src="..." class="d-block w-100" alt="...">
    </div>
    <div class="carousel-item">
      <img src="..." class="d-block w-100" alt="...">
    </div>
  </div>
  <button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleInterval" data-bs-slide="prev">
    <span class="carousel-control-prev-icon" aria-hidden="true"></span>
    <span class="visually-hidden">Previous</span>
  </button>
  <button class="carousel-control-next" type="button" data-bs-target="#carouselExampleInterval" data-bs-slide="next">
    <span class="carousel-control-next-icon" aria-hidden="true"></span>
    <span class="visually-hidden">Next</span>
  </button>
</div>

Disable touch swiping

Carousels support swiping left/right on touchscreen devices to move between slides. This can be disabled using the data-bs-touch attribute. The example below also does not include the data-bs-ride attribute and has data-bs-interval="false" so it doesn’t autoplay.

<div id="carouselExampleControlsNoTouching" class="carousel slide" data-bs-touch="false" data-bs-interval="false">
  <div class="carousel-inner">
    <div class="carousel-item active">
      <img src="..." class="d-block w-100" alt="...">
    </div>
    <div class="carousel-item">
      <img src="..." class="d-block w-100" alt="...">
    </div>
    <div class="carousel-item">
      <img src="..." class="d-block w-100" alt="...">
    </div>
  </div>
  <button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleControlsNoTouching" data-bs-slide="prev">
    <span class="carousel-control-prev-icon" aria-hidden="true"></span>
    <span class="visually-hidden">Previous</span>
  </button>
  <button class="carousel-control-next" type="button" data-bs-target="#carouselExampleControlsNoTouching" data-bs-slide="next">
    <span class="carousel-control-next-icon" aria-hidden="true"></span>
    <span class="visually-hidden">Next</span>
  </button>
</div>

Dark variant

Add .carousel-dark to the .carousel for darker controls, indicators, and captions. Controls have been inverted from their default white fill with the filter CSS property. Captions and controls have additional Sass variables that customize the color and background-color.

<div id="carouselExampleDark" class="carousel carousel-dark slide" data-bs-ride="carousel">
  <div class="carousel-indicators">
    <button type="button" data-bs-target="#carouselExampleDark" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
    <button type="button" data-bs-target="#carouselExampleDark" data-bs-slide-to="1" aria-label="Slide 2"></button>
    <button type="button" data-bs-target="#carouselExampleDark" data-bs-slide-to="2" aria-label="Slide 3"></button>
  </div>
  <div class="carousel-inner">
    <div class="carousel-item active" data-bs-interval="10000">
      <img src="..." class="d-block w-100" alt="...">
      <div class="carousel-caption d-none d-md-block">
        <h5>First slide label</h5>
        <p>Some representative placeholder content for the first slide.</p>
      </div>
    </div>
    <div class="carousel-item" data-bs-interval="2000">
      <img src="..." class="d-block w-100" alt="...">
      <div class="carousel-caption d-none d-md-block">
        <h5>Second slide label</h5>
        <p>Some representative placeholder content for the second slide.</p>
      </div>
    </div>
    <div class="carousel-item">
      <img src="..." class="d-block w-100" alt="...">
      <div class="carousel-caption d-none d-md-block">
        <h5>Third slide label</h5>
        <p>Some representative placeholder content for the third slide.</p>
      </div>
    </div>
  </div>
  <button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleDark" data-bs-slide="prev">
    <span class="carousel-control-prev-icon" aria-hidden="true"></span>
    <span class="visually-hidden">Previous</span>
  </button>
  <button class="carousel-control-next" type="button" data-bs-target="#carouselExampleDark" data-bs-slide="next">
    <span class="carousel-control-next-icon" aria-hidden="true"></span>
    <span class="visually-hidden">Next</span>
  </button>
</div>

Custom transition

The transition duration of .carousel-item can be changed with the $carousel-transition-duration Sass variable before compiling or custom styles if you’re using the compiled CSS. If multiple transitions are applied, make sure the transform transition is defined first (eg. transition: transform 2s ease, opacity .5s ease-out).

Sass

Variables

$carousel-control-color:             $white;
$carousel-control-width:             15%;
$carousel-control-opacity:           .5;
$carousel-control-hover-opacity:     .9;
$carousel-control-transition:        opacity .15s ease;

$carousel-indicator-width:           30px;
$carousel-indicator-height:          3px;
$carousel-indicator-hit-area-height: 10px;
$carousel-indicator-spacer:          3px;
$carousel-indicator-opacity:         .5;
$carousel-indicator-active-bg:       $white;
$carousel-indicator-active-opacity:  1;
$carousel-indicator-transition:      opacity .6s ease;

$carousel-caption-width:             70%;
$carousel-caption-color:             $white;
$carousel-caption-padding-y:         1.25rem;
$carousel-caption-spacer:            1.25rem;

$carousel-control-icon-width:        2rem;

$carousel-control-prev-icon-bg:      url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$carousel-control-color}'><path d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/></svg>");
$carousel-control-next-icon-bg:      url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$carousel-control-color}'><path d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/></svg>");

$carousel-transition-duration:       .6s;
$carousel-transition:                transform $carousel-transition-duration ease-in-out; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`)

$carousel-dark-indicator-active-bg:  $black;
$carousel-dark-caption-color:        $black;
$carousel-dark-control-icon-filter:  invert(1) grayscale(100);

Usage

Via data attributes

Use data attributes to easily control the position of the carousel. data-bs-slide accepts the keywords prev or next, which alters the slide position relative to its current position. Alternatively, use data-bs-slide-to to pass a raw slide index to the carousel data-bs-slide-to="2", which shifts the slide position to a particular index beginning with 0.

The data-bs-ride="carousel" attribute is used to mark a carousel as animating starting at page load. If you don’t use data-bs-ride="carousel" to initialize your carousel, you have to initialize it yourself. It cannot be used in combination with (redundant and unnecessary) explicit JavaScript initialization of the same carousel.

Via JavaScript

Call carousel manually with:

var myCarousel = document.querySelector('#myCarousel')
var carousel = new bootstrap.Carousel(myCarousel)

Options

Options can be passed via data attributes or JavaScript. For data attributes, append the option name to data-bs-, as in data-bs-interval="".

Name Type Default Description
interval number 5000 The amount of time to delay between automatically cycling an item. If false, carousel will not automatically cycle.
keyboard boolean true Whether the carousel should react to keyboard events.
pause string | boolean 'hover'

If set to 'hover', pauses the cycling of the carousel on mouseenter and resumes the cycling of the carousel on mouseleave. If set to false, hovering over the carousel won't pause it.

On touch-enabled devices, when set to 'hover', cycling will pause on touchend (once the user finished interacting with the carousel) for two intervals, before automatically resuming. Note that this is in addition to the above mouse behavior.

ride string | boolean false Autoplays the carousel after the user manually cycles the first item. If set to 'carousel', autoplays the carousel on load.
wrap boolean true Whether the carousel should cycle continuously or have hard stops.
touch boolean true Whether the carousel should support left/right swipe interactions on touchscreen devices.

Methods

Asynchronous methods and transitions

All API methods are asynchronous and start a transition. They return to the caller as soon as the transition is started but before it ends. In addition, a method call on a transitioning component will be ignored.

See our JavaScript documentation for more information.

You can create a carousel instance with the carousel constructor, for example, to initialize with additional options and start cycling through items:

var myCarousel = document.querySelector('#myCarousel')
var carousel = new bootstrap.Carousel(myCarousel, {
  interval: 2000,
  wrap: false
})
Method Description
cycle Cycles through the carousel items from left to right.
pause Stops the carousel from cycling through items.
prev Cycles to the previous item. Returns to the caller before the previous item has been shown (e.g., before the slid.bs.carousel event occurs).
next Cycles to the next item. Returns to the caller before the next item has been shown (e.g., before the slid.bs.carousel event occurs).
nextWhenVisible Don't cycle carousel to next when the page isn't visible or the carousel or its parent isn't visible. Returns to the caller before the target item has been shown
to Cycles the carousel to a particular frame (0 based, similar to an array). Returns to the caller before the target item has been shown (e.g., before the slid.bs.carousel event occurs).
dispose Destroys an element's carousel. (Removes stored data on the DOM element)
getInstance Static method which allows you to get the carousel instance associated with a DOM element.

Events

Bootstrap’s carousel class exposes two events for hooking into carousel functionality. Both events have the following additional properties:

  • direction: The direction in which the carousel is sliding (either "left" or "right").
  • relatedTarget: The DOM element that is being slid into place as the active item.
  • from: The index of the current item
  • to: The index of the next item

All carousel events are fired at the carousel itself (i.e. at the <div class="carousel">).

Event type Description
slide.bs.carousel Fires immediately when the slide instance method is invoked.
slid.bs.carousel Fired when the carousel has completed its slide transition.
var myCarousel = document.getElementById('myCarousel')

myCarousel.addEventListener('slide.bs.carousel', function () {
  // do something...
})
返回頂部
亚洲一区二区三区在线播放,伊人久久精品无码av一区,亚洲国产精品一区二区第一页免,无码aⅴ精品一区二区三区浪潮
<span id="fu32q"></span>
    1. <li id="fu32q"><meter id="fu32q"><th id="fu32q"></th></meter></li>
      奇米精品一区二区三区在线观看| 日本91福利区| 日韩高清在线不卡| 国产一区不卡视频| 91在线视频观看| 国产精品自拍三区| 欧美96一区二区免费视频| 粉嫩高潮美女一区二区三区 | 国产在线精品视频| 91视频在线观看免费| 国产毛片精品一区| 久久国产乱子精品免费女| 99久久精品免费精品国产| 国产美女在线观看一区| 免费成人小视频| 91丨porny丨首页| 丁香婷婷综合网| 激情五月婷婷综合网| 日韩高清不卡一区| 99re8在线精品视频免费播放| 国产福利视频一区二区三区| 九九热在线视频观看这里只有精品| 成人ar影院免费观看视频| 国产精品一区二区黑丝| 激情国产一区二区| 麻豆精品久久久| 免费一级片91| 久久成人久久爱| 久久97超碰色| 国内一区二区视频| 韩国一区二区视频| 狠狠色丁香久久婷婷综| 国产真实乱偷精品视频免| 久久69国产一区二区蜜臀| 久久99精品久久久久久国产越南 | 久久成人精品无人区| 日本va欧美va精品| 青娱乐精品视频在线| 免费精品视频在线| 久久精品国产精品青草| 国内精品国产成人| 国产精品18久久久| 成人精品视频一区二区三区尤物| 成人av在线网| 91丨porny丨中文| 日本 国产 欧美色综合| 老色鬼精品视频在线观看播放| 美女www一区二区| 久久99国产精品久久| 国精产品一区一区三区mba桃花 | 久久国产精品99久久人人澡| 久久99最新地址| 国产一区二区精品久久| 国产91精品一区二区麻豆网站| 成人午夜短视频| 天堂成人免费av电影一区| 青青草97国产精品免费观看无弹窗版| 麻豆久久一区二区| 国内精品第一页| 成人免费视频一区二区| 日本在线不卡视频一二三区| 精品一区二区三区久久久| 国产a精品视频| 99国产精品久久久久| 麻豆传媒一区二区三区| 国产成人免费在线| 丝袜亚洲另类欧美| 国产乱一区二区| 97久久精品人人做人人爽 | 极品少妇一区二区三区精品视频| 国产麻豆91精品| 91丨九色丨蝌蚪丨老版| 激情综合网av| 91麻豆精品一区二区三区| 蜜桃av噜噜一区二区三区小说| 国产精品18久久久久久久久| 99久久99久久精品免费观看| 久久66热偷产精品| 99这里都是精品| 国产一区91精品张津瑜| 日韩国产在线观看| 国产成人av一区二区三区在线| 日韩在线一二三区| 国产ts人妖一区二区| 另类小说综合欧美亚洲| 不卡在线观看av| 国产老女人精品毛片久久| 日韩精品电影在线观看| 成人午夜在线视频| 国精产品一区一区三区mba视频| 91免费国产在线| 丰满放荡岳乱妇91ww| 久久99日本精品| 日韩国产欧美在线视频| av影院午夜一区| 岛国精品一区二区| 国产一区91精品张津瑜| 久久99精品久久久| 日本亚洲免费观看| 91麻豆免费看| 99国产精品国产精品久久| 国产成人精品三级麻豆| 国产精品主播直播| 国内外成人在线| 久久99国产精品麻豆| 日本欧美加勒比视频| 日日摸夜夜添夜夜添精品视频| 成人av在线网| 成人教育av在线| 成人黄色综合网站| 国产成人av在线影院| 国产传媒一区在线| 国产成人综合亚洲91猫咪| 国内成+人亚洲+欧美+综合在线| 美女爽到高潮91| 美女任你摸久久| 免费xxxx性欧美18vr| 免费高清视频精品| 日本v片在线高清不卡在线观看| | 日韩成人av影视| 视频一区二区欧美| 日韩在线观看一区二区| 日本不卡中文字幕| 老司机精品视频在线| 精品在线你懂的| 国产精品99久| 成人激情动漫在线观看| 97久久精品人人做人人爽50路 | 91亚洲国产成人精品一区二区三| 北条麻妃国产九九精品视频| av男人天堂一区| 91免费观看视频| 日韩不卡一区二区三区| 蜜桃精品视频在线观看| 精品影视av免费| 国产成人精品aa毛片| 成人免费视频播放| 91啦中文在线观看| 久久国产日韩欧美精品| 国产福利91精品一区| www.66久久| 蜜桃视频一区二区三区在线观看 | 国产成人av电影在线播放| 不卡一区二区在线| 日韩黄色片在线观看| 国内精品国产成人| 波多野结衣中文字幕一区二区三区| 91香蕉国产在线观看软件| 久久99国产精品麻豆| 成人在线视频一区二区| 日本伊人午夜精品| 国产福利精品一区| 日韩av在线播放中文字幕| 国产一区二三区好的| 99久久久久久| 国产自产2019最新不卡| 91免费看`日韩一区二区| 激情五月激情综合网| 成人黄色国产精品网站大全在线免费观看| 视频一区二区三区中文字幕| 国产一区999| 人人精品人人爱| 成人福利在线看| 激情伊人五月天久久综合| 91丨九色丨黑人外教| 国产一区二区在线观看视频| 视频一区视频二区中文| 高潮精品一区videoshd| 久久精品国产一区二区三| av欧美精品.com| 国产精品18久久久久| 美女mm1313爽爽久久久蜜臀| jlzzjlzz亚洲日本少妇| 国产精品88888| 精品一区二区三区久久| 日韩和欧美一区二区三区| 国产成人在线视频网址| 精品一区二区在线视频| 丝袜美腿一区二区三区| 成人午夜大片免费观看| 国产精品中文字幕日韩精品| 老司机午夜精品99久久| 丝袜国产日韩另类美女| 不卡一二三区首页| 国产成都精品91一区二区三| 激情综合五月婷婷| 麻豆国产精品视频| 日本va欧美va精品发布| 97aⅴ精品视频一二三区| 成人综合婷婷国产精品久久蜜臀| 国产在线日韩欧美| 狠狠网亚洲精品| 激情综合色播激情啊| 久久综合综合久久综合| 蜜桃视频一区二区| 美女一区二区视频| 免费人成黄页网站在线一区二区| 91浏览器在线视频| 天堂午夜影视日韩欧美一区二区| 99精品视频一区| 99国产精品一区| 丝袜脚交一区二区| 日本中文字幕一区| 麻豆视频一区二区| 国产综合久久久久久鬼色| 韩国欧美国产一区| 国产成人在线色| 成人午夜激情影院| 99久久国产综合精品女不卡| 91亚洲精品久久久蜜桃| 日韩高清中文字幕一区| 麻豆精品一区二区| 国产一区激情在线| 成人一区二区三区中文字幕| 99久久精品免费看国产| 日韩精品免费视频人成| 久久国产夜色精品鲁鲁99| 狠狠色丁香婷婷综合久久片| 国产精品99久久久久久似苏梦涵| 从欧美一区二区三区| av一区二区不卡| 日本不卡一区二区三区| 韩国视频一区二区| 成人黄色一级视频| 日韩高清国产一区在线| 国内国产精品久久| 成人免费高清视频在线观看| 日韩国产欧美在线观看| 精品制服美女丁香| 成人av电影免费观看| 日韩精品高清不卡| 国产成人综合自拍| 日韩精品欧美成人高清一区二区| 精品一区二区三区在线视频| 成人午夜激情在线| 免费成人小视频| 高清在线观看日韩| 欧美aa在线视频| 国产超碰在线一区| 青青草国产精品亚洲专区无| 国产精品夜夜爽| 日本一不卡视频| 国产成人在线视频网站| 日本成人在线不卡视频| 国产成a人亚洲精| 青青草成人在线观看| 高清久久久久久| 麻豆中文一区二区| eeuss鲁片一区二区三区在线观看 eeuss影院一区二区三区 | 精品亚洲成av人在线观看| 国产91丝袜在线18| 久久精品国产亚洲aⅴ| www.日韩在线| 韩国欧美一区二区| 日韩1区2区3区| av男人天堂一区| 国产精品亚洲人在线观看| 日本欧美在线观看| www..com久久爱| 国产精品99久久久久久宅男| 蜜桃视频一区二区| 视频在线观看一区| 成人av资源在线观看| 国产一区三区三区| 理论电影国产精品| 日韩中文字幕一区二区三区| 成人免费观看男女羞羞视频| 国产精品中文字幕日韩精品| 免费成人av在线播放| 91免费看`日韩一区二区| 国产91精品精华液一区二区三区| 精品一区二区影视| 美美哒免费高清在线观看视频一区二区 | 国产一区二区影院| 久久激情综合网| 日韩av在线发布| 91麻豆.com| 91色.com| 91视视频在线观看入口直接观看www | 久国产精品韩国三级视频| 日本亚洲欧美天堂免费| 91在线国产福利| 99久久精品国产导航| 不卡一区二区在线| 成年人国产精品| 99麻豆久久久国产精品免费 | av一二三不卡影片| 不卡的av电影| 99精品视频在线观看| av在线综合网| 91麻豆国产福利精品| 日韩高清中文字幕一区| 日韩成人伦理电影在线观看| 奇米影视一区二区三区| 日本伊人色综合网| 理论片日本一区| 国产在线不卡一卡二卡三卡四卡| 国产真实乱偷精品视频免| 国产麻豆成人精品| 成人中文字幕合集| 93久久精品日日躁夜夜躁欧美| 91首页免费视频| 美女性感视频久久| 韩国欧美国产1区| 国产suv精品一区二区6| 波多野结衣中文字幕一区二区三区| aaa欧美色吧激情视频| 三级欧美在线一区| 久久国产精品一区二区| 国产精品1区2区| av在线播放不卡| 奇米综合一区二区三区精品视频| 蜜臀av性久久久久蜜臀av麻豆| 国内成+人亚洲+欧美+综合在线| 国产成人午夜片在线观看高清观看| 成人精品在线视频观看| 日本亚洲一区二区| 国产一区二区看久久| 99久精品国产| 精品夜夜嗨av一区二区三区| 成人视屏免费看| 男女男精品网站| 国产99久久久久久免费看农村| 91丨九色丨蝌蚪丨老版| 极品少妇一区二区三区精品视频| 国产不卡在线播放| 日韩av在线播放中文字幕| 国产在线视频一区二区三区| aa级大片欧美| 韩国欧美一区二区| av电影天堂一区二区在线观看| 麻豆精品视频在线观看| 成人午夜免费av| 老司机精品视频在线| av网站免费线看精品| 黑人精品欧美一区二区蜜桃| 91色|porny| 高清视频一区二区| 久久精品国产**网站演员| 白白色 亚洲乱淫| 国产在线播放一区| 日韩av不卡一区二区| 成人午夜激情视频| 极品少妇xxxx偷拍精品少妇| 天堂资源在线中文精品 | 久久精品国产亚洲aⅴ| 成人午夜av电影| 九一九一国产精品| 日韩中文字幕亚洲一区二区va在线| 国产激情一区二区三区四区| 蜜乳av一区二区三区| 97久久精品人人爽人人爽蜜臀| 国产精品自拍一区| 久久er精品视频| 日本麻豆一区二区三区视频| 99在线精品一区二区三区| 国产福利精品导航| 国内精品伊人久久久久影院对白| 日韩av中文在线观看| 99国产精品99久久久久久| 粉嫩aⅴ一区二区三区四区五区| 狠狠久久亚洲欧美| 久久国产精品72免费观看| 青青青爽久久午夜综合久久午夜| 99热国产精品| 99久久精品免费看| 成av人片一区二区| 成人性色生活片| 成人免费毛片aaaaa**| 国产成人av一区二区三区在线观看| 狠狠色狠狠色综合| 激情亚洲综合在线| 激情欧美日韩一区二区| 精彩视频一区二区| 国产一区视频网站| 韩国成人精品a∨在线观看| 久久 天天综合| 韩国女主播成人在线| 精品一区二区三区在线观看| 久久国产精品99久久人人澡| 久久精品国产99国产精品| 久久99久久99| 国产一区二区三区观看| 国产精品白丝av| 成人黄色小视频在线观看| 成人18精品视频| 视频一区二区国产| 久久国产尿小便嘘嘘| 极品销魂美女一区二区三区| 国产精品一区一区| 粉嫩aⅴ一区二区三区四区五区| 成人免费视频一区二区| 99精品欧美一区二区三区小说| 日韩精品成人一区二区在线| 久久成人羞羞网站| 国产黄人亚洲片| 91在线高清观看| 麻豆freexxxx性91精品| 国产精品888|