އެންބެޑްސް އެވެ
ކޮންމެ ޑިވައިސްއެއްގައި ވެސް ސްކޭލް ކުރެވޭ އިންޓްރިންސިކް ރޭޝިއޯއެއް އުފައްދައިގެން ބެލެނިވެރިޔާގެ ފުޅާމިނަށް ބަލައިގެން ރެސްޕޮންސިވް ވީޑިއޯ ނުވަތަ ސްލައިޑްޝޯ އެންބެޑްސް އުފެއްދުން.
ގުޅިގެން
ޤަވާޢިދުތައް ސީދާ ޢަމަލުކުރެވެނީ <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;