ప్రధాన కంటెంట్‌కు దాటవేయండి డాక్స్ నావిగేషన్‌కు దాటవేయండి
Check
in English

పరస్పర చర్యలు

వెబ్‌సైట్ కంటెంట్‌లతో వినియోగదారులు ఎలా ఇంటరాక్ట్ అవుతారో మార్చే యుటిలిటీ తరగతులు.

టెక్స్ట్ ఎంపిక

వినియోగదారు దానితో పరస్పర చర్య చేసినప్పుడు కంటెంట్ ఎంచుకోబడిన విధానాన్ని మార్చండి.

వినియోగదారు క్లిక్ చేసినప్పుడు ఈ పేరా పూర్తిగా ఎంపిక చేయబడుతుంది.

ఈ పేరాలో డిఫాల్ట్ ఎంపిక ప్రవర్తన ఉంది.

వినియోగదారు క్లిక్ చేసినప్పుడు ఈ పేరా ఎంపిక చేయబడదు.

html
<p class="user-select-all">This paragraph will be entirely selected when clicked by the user.</p>
<p class="user-select-auto">This paragraph has default select behavior.</p>
<p class="user-select-none">This paragraph will not be selectable when clicked by the user.</p>

పాయింటర్ ఈవెంట్స్

మూలకం పరస్పర చర్యలను నిరోధించడానికి లేదా జోడించడానికి బూట్‌స్ట్రాప్ అందిస్తుంది .pe-noneమరియు తరగతులు..pe-auto

ఈ లింక్‌ను క్లిక్ చేయడం సాధ్యం కాదు.

ఈ లింక్‌ను క్లిక్ చేయవచ్చు (ఇది డిఫాల్ట్ ప్రవర్తన).

This link can not be clicked because the pointer-events property is inherited from its parent. However, this link has a pe-auto class and can be clicked.

html
<p><a href="#" class="pe-none" tabindex="-1" aria-disabled="true">This link</a> can not be clicked.</p>
<p><a href="#" class="pe-auto">This link</a> can be clicked (this is default behavior).</p>
<p class="pe-none"><a href="#" tabindex="-1" aria-disabled="true">This link</a> can not be clicked because the <code>pointer-events</code> property is inherited from its parent. However, <a href="#" class="pe-auto">this link</a> has a <code>pe-auto</code> class and can be clicked.</p>

The .pe-none class (and the pointer-events CSS property it sets) only prevents interactions with a pointer (mouse, stylus, touch). Links and controls with .pe-none are, by default, still focusable and actionable for keyboard users. To ensure that they are completely neutralized even for keyboard users, you may need to add further attributes such as tabindex="-1" (to prevent them from receiving keyboard focus) and aria-disabled="true" (to convey the fact they are effectively disabled to assistive technologies), and possibly use JavaScript to completely prevent them from being actionable.

If possible, the simpler solution is:

  • ఫారమ్ నియంత్రణల కోసం, disabledHTML లక్షణాన్ని జోడించండి.
  • లింక్‌ల కోసం, hrefలక్షణాన్ని తీసివేయండి, ఇది నాన్-ఇంటరాక్టివ్ యాంకర్ లేదా ప్లేస్‌హోల్డర్ లింక్‌గా చేస్తుంది.

సాస్

యుటిలిటీస్ API

ఇంటరాక్షన్ యుటిలిటీలు మా యుటిలిటీస్ APIలో ప్రకటించబడ్డాయి scss/_utilities.scss. యుటిలిటీస్ APIని ఎలా ఉపయోగించాలో తెలుసుకోండి.

    "user-select": (
      property: user-select,
      values: all auto none
    ),
    "pointer-events": (
      property: pointer-events,
      class: pe,
      values: none auto,
    ),