முக்கிய உள்ளடக்கத்திற்கு செல்க டாக்ஸ் வழிசெலுத்தலுக்குச் செல்லவும்
Check
in English

எச்சரிக்கைகள்

கிடைக்கக்கூடிய மற்றும் நெகிழ்வான எச்சரிக்கைச் செய்திகளுடன் வழக்கமான பயனர் செயல்களுக்கான சூழல் சார்ந்த கருத்துச் செய்திகளை வழங்கவும்.

எடுத்துக்காட்டுகள்

எந்த நீளமான உரைக்கும் விழிப்பூட்டல்கள் கிடைக்கின்றன, அத்துடன் விருப்பமான மூடும் பொத்தான். சரியான ஸ்டைலிங்கிற்கு, தேவைப்படும் எட்டு சூழ்நிலை வகுப்புகளில் ஒன்றைப் பயன்படுத்தவும் (எ.கா., .alert-success). இன்லைன் நீக்கத்திற்கு, விழிப்பூட்டல்கள் JavaScript செருகுநிரலைப் பயன்படுத்தவும் .

html
<div class="alert alert-primary" role="alert">
  A simple primary alert—check it out!
</div>
<div class="alert alert-secondary" role="alert">
  A simple secondary alert—check it out!
</div>
<div class="alert alert-success" role="alert">
  A simple success alert—check it out!
</div>
<div class="alert alert-danger" role="alert">
  A simple danger alert—check it out!
</div>
<div class="alert alert-warning" role="alert">
  A simple warning alert—check it out!
</div>
<div class="alert alert-info" role="alert">
  A simple info alert—check it out!
</div>
<div class="alert alert-light" role="alert">
  A simple light alert—check it out!
</div>
<div class="alert alert-dark" role="alert">
  A simple dark alert—check it out!
</div>
உதவி தொழில்நுட்பங்களுக்கு அர்த்தத்தை வெளிப்படுத்துதல்

பொருளைச் சேர்க்க வண்ணத்தைப் பயன்படுத்துவது ஒரு காட்சிக் குறிப்பை மட்டுமே வழங்குகிறது, இது ஸ்கிரீன் ரீடர்கள் போன்ற உதவித் தொழில்நுட்பங்களைப் பயன்படுத்துபவர்களுக்குத் தெரிவிக்கப்படாது. வண்ணத்தால் குறிக்கப்படும் தகவல் உள்ளடக்கத்திலிருந்தே (எ.கா. புலப்படும் உரை) தெளிவாக இருப்பதை உறுதிசெய்யவும் அல்லது .visually-hiddenவகுப்பில் மறைக்கப்பட்ட கூடுதல் உரை போன்ற மாற்று வழிகளில் சேர்க்கப்பட்டுள்ளது.

நேரடி உதாரணம்

விழிப்பூட்டலைக் காட்ட கீழே உள்ள பொத்தானைக் கிளிக் செய்யவும் (தொடங்குவதற்கு இன்லைன் ஸ்டைல்களுடன் மறைக்கப்பட்டுள்ளது), பின்னர் உள்ளமைக்கப்பட்ட மூட பொத்தானைக் கொண்டு அதை நிராகரிக்கவும் (மற்றும் அழிக்கவும்).

html
<div id="liveAlertPlaceholder"></div>
<button type="button" class="btn btn-primary" id="liveAlertBtn">Show live alert</button>

எங்கள் நேரடி எச்சரிக்கை டெமோவைத் தூண்டுவதற்கு பின்வரும் JavaScript ஐப் பயன்படுத்துகிறோம்:

const alertPlaceholder = document.getElementById('liveAlertPlaceholder')

const alert = (message, type) => {
  const wrapper = document.createElement('div')
  wrapper.innerHTML = [
    `<div class="alert alert-${type} alert-dismissible" role="alert">`,
    `   <div>${message}</div>`,
    '   <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>',
    '</div>'
  ].join('')

  alertPlaceholder.append(wrapper)
}

const alertTrigger = document.getElementById('liveAlertBtn')
if (alertTrigger) {
  alertTrigger.addEventListener('click', () => {
    alert('Nice, you triggered this alert message!', 'success')
  })
}

.alert-linkஎந்தவொரு விழிப்பூட்டலிலும் பொருந்தக்கூடிய வண்ண இணைப்புகளை விரைவாக வழங்க , பயன்பாட்டு வகுப்பைப் பயன்படுத்தவும் .

html
<div class="alert alert-primary" role="alert">
  A simple primary alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-secondary" role="alert">
  A simple secondary alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-success" role="alert">
  A simple success alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-danger" role="alert">
  A simple danger alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-warning" role="alert">
  A simple warning alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-info" role="alert">
  A simple info alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-light" role="alert">
  A simple light alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-dark" role="alert">
  A simple dark alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>

கூடுதல் உள்ளடக்கம்

எச்சரிக்கைகள் தலைப்புகள், பத்திகள் மற்றும் வகுப்பிகள் போன்ற கூடுதல் HTML கூறுகளையும் கொண்டிருக்கலாம்.

html
<div class="alert alert-success" role="alert">
  <h4 class="alert-heading">Well done!</h4>
  <p>Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.</p>
  <hr>
  <p class="mb-0">Whenever you need to, be sure to use margin utilities to keep things nice and tidy.</p>
</div>

சின்னங்கள்

இதேபோல், ஐகான்களுடன் விழிப்பூட்டல்களை உருவாக்க ஃப்ளெக்ஸ்பாக்ஸ் பயன்பாடுகள் மற்றும் பூட்ஸ்டார்ப் ஐகான்களைப் பயன்படுத்தலாம். உங்கள் ஐகான்கள் மற்றும் உள்ளடக்கத்தைப் பொறுத்து, நீங்கள் கூடுதல் பயன்பாடுகள் அல்லது தனிப்பயன் பாணிகளைச் சேர்க்க விரும்பலாம்.

html
<div class="alert alert-primary d-flex align-items-center" role="alert">
  <svg xmlns="http://www.w3.org/2000/svg" class="bi bi-exclamation-triangle-fill flex-shrink-0 me-2" viewBox="0 0 16 16" role="img" aria-label="Warning:">
    <path d="M8.982 1.566a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767L8.982 1.566zM8 5c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 5.995A.905.905 0 0 1 8 5zm.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2z"/>
  </svg>
  <div>
    An example alert with an icon
  </div>
</div>

உங்கள் விழிப்பூட்டல்களுக்கு ஒன்றுக்கு மேற்பட்ட ஐகான்கள் வேண்டுமா? அதிக பூட்ஸ்டார்ப் ஐகான்களைப் பயன்படுத்துவதையும், அதே ஐகான்களை மீண்டும் மீண்டும் குறிப்பிடுவதற்கு, உள்ளூர் SVG ஸ்பிரைட்டை உருவாக்குவதையும் கருத்தில் கொள்ளுங்கள்.

html
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
  <symbol id="check-circle-fill" viewBox="0 0 16 16">
    <path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z"/>
  </symbol>
  <symbol id="info-fill" viewBox="0 0 16 16">
    <path d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zm.93-9.412-1 4.705c-.07.34.029.533.304.533.194 0 .487-.07.686-.246l-.088.416c-.287.346-.92.598-1.465.598-.703 0-1.002-.422-.808-1.319l.738-3.468c.064-.293.006-.399-.287-.47l-.451-.081.082-.381 2.29-.287zM8 5.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2z"/>
  </symbol>
  <symbol id="exclamation-triangle-fill" viewBox="0 0 16 16">
    <path d="M8.982 1.566a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767L8.982 1.566zM8 5c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 5.995A.905.905 0 0 1 8 5zm.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2z"/>
  </symbol>
</svg>

<div class="alert alert-primary d-flex align-items-center" role="alert">
  <svg class="bi flex-shrink-0 me-2" role="img" aria-label="Info:"><use xlink:href="#info-fill"/></svg>
  <div>
    An example alert with an icon
  </div>
</div>
<div class="alert alert-success d-flex align-items-center" role="alert">
  <svg class="bi flex-shrink-0 me-2" role="img" aria-label="Success:"><use xlink:href="#check-circle-fill"/></svg>
  <div>
    An example success alert with an icon
  </div>
</div>
<div class="alert alert-warning d-flex align-items-center" role="alert">
  <svg class="bi flex-shrink-0 me-2" role="img" aria-label="Warning:"><use xlink:href="#exclamation-triangle-fill"/></svg>
  <div>
    An example warning alert with an icon
  </div>
</div>
<div class="alert alert-danger d-flex align-items-center" role="alert">
  <svg class="bi flex-shrink-0 me-2" role="img" aria-label="Danger:"><use xlink:href="#exclamation-triangle-fill"/></svg>
  <div>
    An example danger alert with an icon
  </div>
</div>

நிராகரித்தல்

எச்சரிக்கை ஜாவாஸ்கிரிப்ட் செருகுநிரலைப் பயன்படுத்தி, எந்த எச்சரிக்கை இன்லைனையும் நிராகரிக்க முடியும். எப்படி என்பது இங்கே:

  • விழிப்பூட்டல் செருகுநிரல் அல்லது தொகுக்கப்பட்ட பூட்ஸ்டார்ப் ஜாவாஸ்கிரிப்டை ஏற்றியுள்ளீர்கள் என்பதை உறுதிப்படுத்திக் கொள்ளுங்கள்.
  • மூடு பட்டன் மற்றும் வகுப்பைச் சேர்க்கவும் .alert-dismissible, இது விழிப்பூட்டலின் வலதுபுறத்தில் கூடுதல் திணிப்பைச் சேர்க்கிறது மற்றும் மூடு பொத்தானை நிலைநிறுத்துகிறது.
  • மூடு பட்டனில், data-bs-dismiss="alert"ஜாவாஸ்கிரிப்ட் செயல்பாட்டைத் தூண்டும் பண்புக்கூறைச் சேர்க்கவும். <button>எல்லா சாதனங்களிலும் சரியான நடத்தைக்கு உறுப்பை அதனுடன் பயன்படுத்துவதை உறுதிசெய்யவும் .
  • விழிப்பூட்டல்களை நிராகரிக்கும்போது அவற்றை அனிமேட் செய்ய, .fadeமற்றும் .showவகுப்புகளைச் சேர்க்க மறக்காதீர்கள்.

லைவ் டெமோ மூலம் இதை செயலில் காணலாம்:

html
<div class="alert alert-warning alert-dismissible fade show" role="alert">
  <strong>Holy guacamole!</strong> You should check in on some of those fields below.
  <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
எச்சரிக்கை நிராகரிக்கப்படும் போது, ​​பக்க அமைப்பிலிருந்து உறுப்பு முற்றிலும் அகற்றப்படும். விசைப்பலகை பயனர் மூடும் பொத்தானைப் பயன்படுத்தி விழிப்பூட்டலை நிராகரித்தால், அவர்களின் கவனம் திடீரென இழக்கப்படும், மேலும் உலாவியைப் பொறுத்து, பக்கம்/ஆவணத்தின் தொடக்கத்திற்கு மீட்டமைக்கப்படும். இந்த காரணத்திற்காக, closed.bs.alertநிகழ்வைக் கேட்கும் மற்றும் focus()பக்கத்தின் மிகவும் பொருத்தமான இடத்தை நிரல் ரீதியாக அமைக்கும் கூடுதல் JavaScript ஐச் சேர்க்க பரிந்துரைக்கிறோம். பொதுவாக ஃபோகஸ் பெறாத ஊடாடாத உறுப்புக்கு கவனத்தை நகர்த்த திட்டமிட்டால், உறுப்பில் சேர்ப்பதை உறுதிசெய்யவும் tabindex="-1".

CSS

மாறிகள்

v5.2.0 இல் சேர்க்கப்பட்டது

பூட்ஸ்டார்ப்பின் வளரும் CSS மாறிகள் அணுகுமுறையின் ஒரு பகுதியாக, விழிப்பூட்டல்கள் இப்போது .alertமேம்படுத்தப்பட்ட நிகழ்நேர தனிப்பயனாக்கத்திற்காக உள்ளூர் CSS மாறிகளைப் பயன்படுத்துகின்றன. CSS மாறிகளுக்கான மதிப்புகள் Sass வழியாக அமைக்கப்படுகின்றன, எனவே Sass தனிப்பயனாக்கம் இன்னும் ஆதரிக்கப்படுகிறது.

  --#{$prefix}alert-bg: transparent;
  --#{$prefix}alert-padding-x: #{$alert-padding-x};
  --#{$prefix}alert-padding-y: #{$alert-padding-y};
  --#{$prefix}alert-margin-bottom: #{$alert-margin-bottom};
  --#{$prefix}alert-color: inherit;
  --#{$prefix}alert-border-color: transparent;
  --#{$prefix}alert-border: #{$alert-border-width} solid var(--#{$prefix}alert-border-color);
  --#{$prefix}alert-border-radius: #{$alert-border-radius};
  

சாஸ் மாறிகள்

$alert-padding-y:               $spacer;
$alert-padding-x:               $spacer;
$alert-margin-bottom:           1rem;
$alert-border-radius:           $border-radius;
$alert-link-font-weight:        $font-weight-bold;
$alert-border-width:            $border-width;
$alert-bg-scale:                -80%;
$alert-border-scale:            -70%;
$alert-color-scale:             40%;
$alert-dismissible-padding-r:   $alert-padding-x * 3; // 3x covers width of x plus default padding on either side

சாஸ் கலவை

$theme-colorsஎங்களுடைய விழிப்பூட்டல்களுக்கான சூழல் மாற்றியமைக்கும் வகுப்புகளை உருவாக்குவதற்கு இணைந்து பயன்படுத்தப்படுகிறது .

@mixin alert-variant($background, $border, $color) {
  --#{$prefix}alert-color: #{$color};
  --#{$prefix}alert-bg: #{$background};
  --#{$prefix}alert-border-color: #{$border};

  @if $enable-gradients {
    background-image: var(--#{$prefix}gradient);
  }

  .alert-link {
    color: shade-color($color, 20%);
  }
}

சாஸ் லூப்

மிக்சினுடன் மாற்றி வகுப்புகளை உருவாக்கும் லூப் alert-variant().

// Generate contextual modifier classes for colorizing the alert.

@each $state, $value in $theme-colors {
  $alert-background: shift-color($value, $alert-bg-scale);
  $alert-border: shift-color($value, $alert-border-scale);
  $alert-color: shift-color($value, $alert-color-scale);

  @if (contrast-ratio($alert-background, $alert-color) < $min-contrast-ratio) {
    $alert-color: mix($value, color-contrast($alert-background), abs($alert-color-scale));
  }
  .alert-#{$state} {
    @include alert-variant($alert-background, $alert-border, $alert-color);
  }
}

ஜாவாஸ்கிரிப்ட் நடத்தை

துவக்கவும்

உறுப்புகளை விழிப்பூட்டல்களாக துவக்கவும்

const alertList = document.querySelectorAll('.alert')
const alerts = [...alertList].map(element => new bootstrap.Alert(element))

விழிப்பூட்டலை நிராகரிப்பதற்கான ஒரே நோக்கத்திற்காக, JS API வழியாக கூறுகளை கைமுறையாக துவக்க வேண்டிய அவசியமில்லை. ஐப் பயன்படுத்துவதன் மூலம் data-bs-dismiss="alert", கூறு தானாகவே துவக்கப்பட்டு சரியாக நிராகரிக்கப்படும்.

மேலும் விவரங்களுக்கு தூண்டுதல்கள் பகுதியைப் பார்க்கவும் .

தூண்டுகிறது

Dismissal can be achieved with the data attribute on a button within the alert as demonstrated below:

<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>

or on a button outside the alert using the data-bs-target as demonstrated below:

<button type="button" class="btn-close" data-bs-dismiss="alert" data-bs-target="#my-alert" aria-label="Close"></button>

Note that closing an alert will remove it from the DOM.

Methods

You can create an alert instance with the alert constructor, for example:

const bsAlert = new bootstrap.Alert('#myAlert')

This makes an alert listen for click events on descendant elements which have the data-bs-dismiss="alert" attribute. (Not necessary when using the data-api’s auto-initialization.)

Method Description
close Closes an alert by removing it from the DOM. If the .fade and .show classes are present on the element, the alert will fade out before it is removed.
dispose Destroys an element’s alert. (Removes stored data on the DOM element)
getInstance DOM உறுப்புடன் தொடர்புடைய எச்சரிக்கை நிகழ்வைப் பெற உங்களை அனுமதிக்கும் நிலையான முறை. உதாரணமாக: bootstrap.Alert.getInstance(alert).
getOrCreateInstance DOM உறுப்புடன் தொடர்புடைய எச்சரிக்கை நிகழ்வை வழங்கும் நிலையான முறை அல்லது அது துவக்கப்படாமல் இருந்தால் புதிய ஒன்றை உருவாக்கவும். நீங்கள் இதை இப்படி பயன்படுத்தலாம்: bootstrap.Alert.getOrCreateInstance(element).

அடிப்படை பயன்பாடு:

const alert = bootstrap.Alert.getOrCreateInstance('#myAlert')
alert.close()

நிகழ்வுகள்

பூட்ஸ்டார்ப்பின் விழிப்பூட்டல் செருகுநிரலானது, எச்சரிக்கை செயல்பாட்டில் இணைக்கும் சில நிகழ்வுகளை வெளிப்படுத்துகிறது.

நிகழ்வு விளக்கம்
close.bs.alert closeநிகழ்வு முறை என்று அழைக்கப்படும் போது உடனடியாக சுடுகிறது .
closed.bs.alert விழிப்பூட்டல் மூடப்பட்டு CSS மாற்றங்கள் முடிந்ததும் நீக்கப்பட்டது.
const myAlert = document.getElementById('myAlert')
myAlert.addEventListener('closed.bs.alert', event => {
  // do something, for instance, explicitly move focus to the most appropriate element,
  // so it doesn't get lost/reset to the start of the page
  // document.getElementById('...').focus()
})