in English

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

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

കുറിച്ച്

നിയമങ്ങൾ നേരിട്ട് പ്രയോഗിക്കുന്നു <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>

എന്നതിനുള്ളിൽ _variables.scss, നിങ്ങൾ ഉപയോഗിക്കാൻ ആഗ്രഹിക്കുന്ന വീക്ഷണാനുപാതം മാറ്റാം. $embed-responsive-aspect-ratiosപട്ടികയുടെ ഒരു ഉദാഹരണം ഇതാ :

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