in English

Mga naka-embed

Gumawa ng tumutugon na video o mga pag-embed ng slideshow batay sa lapad ng magulang sa pamamagitan ng paggawa ng intrinsic ratio na sumusukat sa anumang device.

Tungkol sa

Direktang inilalapat ang mga panuntunan sa <iframe>, <embed>, <video>, at mga <object>elemento; opsyonal na gumamit ng tahasang descendant class .embed-responsive-itemkapag gusto mong itugma ang styling para sa iba pang attribute.

Pro-Tip! Hindi mo na kailangang isama frameborder="0"sa iyong <iframe>s dahil ine-override namin iyon para sa iyo.

Halimbawa

I-wrap ang anumang embed tulad <iframe>ng in a parent element na may .embed-responsiveat isang aspect ratio. Ang .embed-responsive-itemay hindi mahigpit na kinakailangan, ngunit hinihikayat namin ito.

<div class="embed-responsive embed-responsive-16by9">
  <iframe class="embed-responsive-item" src="https://www.youtube.com/embed/zpOULjyy-n8?rel=0" allowfullscreen></iframe>
</div>

Mga aspect ratio

Maaaring i-customize ang mga aspect ratio sa mga klase ng modifier. Bilang default, ibinibigay ang mga sumusunod na klase ng ratio:

<!-- 21:9 aspect ratio -->
<div class="embed-responsive embed-responsive-21by9">
  <iframe class="embed-responsive-item" src="..."></iframe>
</div>

<!-- 16:9 aspect ratio -->
<div class="embed-responsive embed-responsive-16by9">
  <iframe class="embed-responsive-item" src="..."></iframe>
</div>

<!-- 4:3 aspect ratio -->
<div class="embed-responsive embed-responsive-4by3">
  <iframe class="embed-responsive-item" src="..."></iframe>
</div>

<!-- 1:1 aspect ratio -->
<div class="embed-responsive embed-responsive-1by1">
  <iframe class="embed-responsive-item" src="..."></iframe>
</div>

Sa loob _variables.scssng , maaari mong baguhin ang mga aspect ratio na gusto mong gamitin. Narito ang isang halimbawa ng $embed-responsive-aspect-ratioslistahan:

$embed-responsive-aspect-ratios: (
  (21 9),
  (16 9),
  (4 3),
  (1 1)
) !default;