मुख्य विषयवस्तु में जाएं डॉक्स नेविगेशन पर जाएं
Check
in English

बातचीत

उपयोगिता वर्ग जो बदलते हैं कि उपयोगकर्ता किसी वेबसाइट की सामग्री के साथ कैसे इंटरैक्ट करते हैं।

पाठ चयन

जब उपयोगकर्ता इसके साथ इंटरैक्ट करता है तो जिस तरह से सामग्री का चयन किया जाता है उसे बदलें।

उपयोगकर्ता द्वारा क्लिक किए जाने पर यह पैराग्राफ पूरी तरह से चुना जाएगा।

इस अनुच्छेद में डिफ़ॉल्ट चयन व्यवहार है।

उपयोगकर्ता द्वारा क्लिक करने पर यह पैराग्राफ चयन योग्य नहीं होगा।

एचटीएमएल
<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 be clicked (this is default behavior).

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:

  • For form controls, add the disabled HTML attribute.
  • For links, remove the href attribute, making it a non-interactive anchor or placeholder link.

Sass

Utilities API

इंटरेक्शन यूटिलिटीज को हमारी यूटिलिटीज एपीआई में scss/_utilities.scss. उपयोगिताओं API का उपयोग करना सीखें।

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