બેજ
બેજ માટે દસ્તાવેજીકરણ અને ઉદાહરણો, અમારી નાની ગણતરી અને લેબલિંગ ઘટક.
ઉદાહરણ
em
સંબંધિત ફોન્ટ કદ અને એકમોનો ઉપયોગ કરીને તાત્કાલિક પિતૃ તત્વના કદ સાથે મેળ કરવા માટે બેજ સ્કેલ .
ઉદાહરણ મથાળુંનવી
ઉદાહરણ મથાળુંનવી
ઉદાહરણ મથાળુંનવી
ઉદાહરણ મથાળુંનવી
ઉદાહરણ મથાળુંનવી
ઉદાહરણ મથાળુંનવી
<h1>Example heading <span class="badge badge-secondary">New</span></h1>
<h2>Example heading <span class="badge badge-secondary">New</span></h2>
<h3>Example heading <span class="badge badge-secondary">New</span></h3>
<h4>Example heading <span class="badge badge-secondary">New</span></h4>
<h5>Example heading <span class="badge badge-secondary">New</span></h5>
<h6>Example heading <span class="badge badge-secondary">New</span></h6>
કાઉન્ટર પ્રદાન કરવા માટે બેજેસનો ઉપયોગ લિંક્સ અથવા બટનોના ભાગ રૂપે થઈ શકે છે.
<button type="button" class="btn btn-primary">
Notifications <span class="badge badge-light">4</span>
</button>
Note that depending on how they are used, badges may be confusing for users of screen readers and similar assistive technologies. While the styling of badges provides a visual cue as to their purpose, these users will simply be presented with the content of the badge. Depending on the specific situation, these badges may seem like random additional words or numbers at the end of a sentence, link, or button.
Unless the context is clear (as with the “Notifications” example, where it is understood that the “4” is the number of notifications), consider including additional context with a visually hidden piece of additional text.
<button type="button" class="btn btn-primary">
Profile <span class="badge badge-light">9</span>
<span class="sr-only">unread messages</span>
</button>
Contextual variations
Add any of the below mentioned modifier classes to change the appearance of a badge.
<span class="badge badge-primary">Primary</span>
<span class="badge badge-secondary">Secondary</span>
<span class="badge badge-success">Success</span>
<span class="badge badge-danger">Danger</span>
<span class="badge badge-warning">Warning</span>
<span class="badge badge-info">Info</span>
<span class="badge badge-light">Light</span>
<span class="badge badge-dark">Dark</span>
Conveying meaning to assistive technologies
અર્થ ઉમેરવા માટે રંગનો ઉપયોગ કરવાથી માત્ર એક વિઝ્યુઅલ સંકેત મળે છે, જે સહાયક ટેક્નોલોજીના વપરાશકર્તાઓ સુધી પહોંચાડવામાં આવશે નહીં - જેમ કે સ્ક્રીન રીડર્સ. ખાતરી કરો કે રંગ દ્વારા સૂચવવામાં આવેલી માહિતી કાં તો સામગ્રીમાંથી જ સ્પષ્ટ છે (દા.ત. દૃશ્યમાન ટેક્સ્ટ), અથવા વૈકલ્પિક માધ્યમો દ્વારા શામેલ છે, જેમ કે .sr-only
વર્ગ સાથે છુપાયેલ વધારાની ટેક્સ્ટ.
પીલ બેજ
બેજેસને વધુ ગોળાકાર બનાવવા માટે મોડિફાયર ક્લાસનો ઉપયોગ કરો .badge-pill
(મોટા border-radius
અને વધારાના આડા સાથે padding
). જો તમે v3 ના બેજેસ ચૂકી ગયા હો તો ઉપયોગી.
<span class="badge badge-pill badge-primary">Primary</span>
<span class="badge badge-pill badge-secondary">Secondary</span>
<span class="badge badge-pill badge-success">Success</span>
<span class="badge badge-pill badge-danger">Danger</span>
<span class="badge badge-pill badge-warning">Warning</span>
<span class="badge badge-pill badge-info">Info</span>
<span class="badge badge-pill badge-light">Light</span>
<span class="badge badge-pill badge-dark">Dark</span>
લિંક્સ
એક તત્વ પર સંદર્ભિત .badge-*
વર્ગોનો ઉપયોગ કરવાથી હોવર અને ફોકસ સ્ટેટ્સ સાથે <a>
ઝડપથી કાર્યક્ષમ બેજેસ પ્રદાન કરે છે.
<a href="#" class="badge badge-primary">Primary</a>
<a href="#" class="badge badge-secondary">Secondary</a>
<a href="#" class="badge badge-success">Success</a>
<a href="#" class="badge badge-danger">Danger</a>
<a href="#" class="badge badge-warning">Warning</a>
<a href="#" class="badge badge-info">Info</a>
<a href="#" class="badge badge-light">Light</a>
<a href="#" class="badge badge-dark">Dark</a>