Source

ഉൾച്ചേർക്കുന്നു

ഏത് ഉപകരണത്തിലും സ്കെയിൽ ചെയ്യുന്ന ഒരു അന്തർലീനമായ അനുപാതം സൃഷ്‌ടിച്ച് രക്ഷിതാവിന്റെ വീതിയെ അടിസ്ഥാനമാക്കി പ്രതികരിക്കുന്ന വീഡിയോ അല്ലെങ്കിൽ സ്ലൈഡ്‌ഷോ ഉൾച്ചേർക്കലുകൾ സൃഷ്‌ടിക്കുക.

കുറിച്ച്

നിയമങ്ങൾ നേരിട്ട് പ്രയോഗിക്കുന്നു <iframe>, <embed>, <video>, കൂടാതെ <object>ഘടകങ്ങൾ; .embed-responsive-itemമറ്റ് ആട്രിബ്യൂട്ടുകൾക്കായി നിങ്ങൾക്ക് സ്റ്റൈലിംഗുമായി പൊരുത്തപ്പെടാൻ താൽപ്പര്യപ്പെടുമ്പോൾ, ഓപ്ഷണലായി ഒരു വ്യക്തമായ ഡിസെൻഡന്റ് ക്ലാസ് ഉപയോഗിക്കുക .

പ്രോ-ടിപ്പ്! നിങ്ങൾക്കായി ഞങ്ങൾ അത് അസാധുവാക്കുന്നതിനാൽ frameborder="0"നിങ്ങളുടെ s-ൽ ഉൾപ്പെടുത്തേണ്ടതില്ല.<iframe>

ഉദാഹരണം

<iframe>ഒരു പാരന്റ് എലമെന്റിൽ .embed-responsiveഒരു വീക്ഷണാനുപാതം പോലെ ഏതെങ്കിലും ഉൾച്ചേർക്കൽ പൊതിയുക . .embed-responsive-itemഇത് കർശനമായി ആവശ്യമില്ല, പക്ഷേ ഞങ്ങൾ അത് പ്രോത്സാഹിപ്പിക്കുന്നു .

<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>

വീക്ഷണ അനുപാതങ്ങൾ

മോഡിഫയർ ക്ലാസുകൾ ഉപയോഗിച്ച് വീക്ഷണ അനുപാതങ്ങൾ ഇഷ്ടാനുസൃതമാക്കാവുന്നതാണ്.

<!-- 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>