Sourceబటన్ సమూహం
బటన్ల శ్రేణిని ఒకే లైన్లో బటన్ సమూహంతో సమూహపరచండి మరియు వాటిని JavaScriptతో సూపర్ పవర్ చేయండి.
ప్రాథమిక ఉదాహరణ
.btn
ఇన్ తో బటన్ల శ్రేణిని చుట్టండి .btn-group
. మా బటన్ల ప్లగ్ఇన్తో ఐచ్ఛిక JavaScript రేడియో మరియు చెక్బాక్స్ శైలి ప్రవర్తనను జోడించండి .
కాపీ చేయండి
<div class= "btn-group" role= "group" aria-label= "Basic example" >
<button type= "button" class= "btn btn-secondary" > Left</button>
<button type= "button" class= "btn btn-secondary" > Middle</button>
<button type= "button" class= "btn btn-secondary" > Right</button>
</div>
సరైనదని నిర్ధారించుకోండి role
మరియు లేబుల్ను అందించండి
బటన్ల శ్రేణి సమూహం చేయబడిందని తెలియజేయడానికి సహాయక సాంకేతికతలు (స్క్రీన్ రీడర్లు వంటివి) కోసం, తగిన role
లక్షణాన్ని అందించాలి. బటన్ సమూహాల కోసం, ఇది role="group"
, టూల్బార్లు ఒక కలిగి ఉండాలి role="toolbar"
.
అదనంగా, సమూహాలు మరియు టూల్బార్లకు స్పష్టమైన లేబుల్ ఇవ్వాలి, ఎందుకంటే చాలా సహాయక సాంకేతికతలు సరైన పాత్ర లక్షణం ఉన్నప్పటికీ వాటిని ప్రకటించవు. ఇక్కడ అందించిన ఉదాహరణలలో, మేము ఉపయోగిస్తాము aria-label
, కానీ ప్రత్యామ్నాయాలను aria-labelledby
కూడా ఉపయోగించవచ్చు.
మరింత క్లిష్టమైన భాగాల కోసం బటన్ సమూహాల సెట్లను బటన్ టూల్బార్లుగా కలపండి. సమూహాలు, బటన్లు మరియు మరిన్నింటిని ఖాళీ చేయడానికి అవసరమైన యుటిలిటీ తరగతులను ఉపయోగించండి.
కాపీ చేయండి
<div class= "btn-toolbar" role= "toolbar" aria-label= "Toolbar with button groups" >
<div class= "btn-group mr-2" role= "group" aria-label= "First group" >
<button type= "button" class= "btn btn-secondary" > 1</button>
<button type= "button" class= "btn btn-secondary" > 2</button>
<button type= "button" class= "btn btn-secondary" > 3</button>
<button type= "button" class= "btn btn-secondary" > 4</button>
</div>
<div class= "btn-group mr-2" role= "group" aria-label= "Second group" >
<button type= "button" class= "btn btn-secondary" > 5</button>
<button type= "button" class= "btn btn-secondary" > 6</button>
<button type= "button" class= "btn btn-secondary" > 7</button>
</div>
<div class= "btn-group" role= "group" aria-label= "Third group" >
<button type= "button" class= "btn btn-secondary" > 8</button>
</div>
</div>
మీ టూల్బార్లలో బటన్ సమూహాలతో ఇన్పుట్ సమూహాలను కలపడానికి సంకోచించకండి. పై ఉదాహరణ మాదిరిగానే, వస్తువులను సరిగ్గా ఖాళీ చేయడానికి మీకు కొన్ని యుటిలిటీలు అవసరం కావచ్చు.
కాపీ చేయండి
<div class= "btn-toolbar mb-3" role= "toolbar" aria-label= "Toolbar with button groups" >
<div class= "btn-group mr-2" role= "group" aria-label= "First group" >
<button type= "button" class= "btn btn-secondary" > 1</button>
<button type= "button" class= "btn btn-secondary" > 2</button>
<button type= "button" class= "btn btn-secondary" > 3</button>
<button type= "button" class= "btn btn-secondary" > 4</button>
</div>
<div class= "input-group" >
<div class= "input-group-prepend" >
<div class= "input-group-text" id= "btnGroupAddon" > @</div>
</div>
<input type= "text" class= "form-control" placeholder= "Input group example" aria-label= "Input group example" aria-describedby= "btnGroupAddon" >
</div>
</div>
<div class= "btn-toolbar justify-content-between" role= "toolbar" aria-label= "Toolbar with button groups" >
<div class= "btn-group" role= "group" aria-label= "First group" >
<button type= "button" class= "btn btn-secondary" > 1</button>
<button type= "button" class= "btn btn-secondary" > 2</button>
<button type= "button" class= "btn btn-secondary" > 3</button>
<button type= "button" class= "btn btn-secondary" > 4</button>
</div>
<div class= "input-group" >
<div class= "input-group-prepend" >
<div class= "input-group-text" id= "btnGroupAddon2" > @</div>
</div>
<input type= "text" class= "form-control" placeholder= "Input group example" aria-label= "Input group example" aria-describedby= "btnGroupAddon2" >
</div>
</div>
సైజింగ్
సమూహంలోని ప్రతి బటన్కు బటన్ సైజింగ్ తరగతులను వర్తింపజేయడానికి బదులుగా, బహుళ సమూహాలను గూడు కట్టుకునేటప్పుడు .btn-group-*
ఒక్కొక్కటితో .btn-group
సహా ప్రతి ఒక్కటికి జోడించండి.
ఎడమ
మధ్య
కుడి
ఎడమ
మధ్య
కుడి
ఎడమ
మధ్య
కుడి
కాపీ చేయండి
<div class= "btn-group btn-group-lg" role= "group" aria-label= "..." > ...</div>
<div class= "btn-group" role= "group" aria-label= "..." > ...</div>
<div class= "btn-group btn-group-sm" role= "group" aria-label= "..." > ...</div>
గూడు కట్టడం
మీరు బటన్ల శ్రేణితో డ్రాప్డౌన్ మెనులను కలపాలనుకున్నప్పుడు .btn-group
మరొక దానిలో ఉంచండి ..btn-group
కాపీ చేయండి
<div class= "btn-group" role= "group" aria-label= "Button group with nested dropdown" >
<button type= "button" class= "btn btn-secondary" > 1</button>
<button type= "button" class= "btn btn-secondary" > 2</button>
<div class= "btn-group" role= "group" >
<button id= "btnGroupDrop1" type= "button" class= "btn btn-secondary dropdown-toggle" data-toggle= "dropdown" aria-haspopup= "true" aria-expanded= "false" >
Dropdown
</button>
<div class= "dropdown-menu" aria-labelledby= "btnGroupDrop1" >
<a class= "dropdown-item" href= "#" > Dropdown link</a>
<a class= "dropdown-item" href= "#" > Dropdown link</a>
</div>
</div>
</div>
నిలువు వైవిధ్యం
బటన్ల సమితిని అడ్డంగా కాకుండా నిలువుగా పేర్చినట్లు కనిపించేలా చేయండి. స్ప్లిట్ బటన్ డ్రాప్డౌన్లకు ఇక్కడ మద్దతు లేదు.
బటన్
బటన్
బటన్
బటన్
బటన్
బటన్
బటన్
బటన్
కింద పడేయి
బటన్
బటన్
కింద పడేయి
కింద పడేయి
కింద పడేయి
కాపీ చేయండి
<div class= "btn-group-vertical" >
...
</div>