mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-06-05 16:42:29 +03:00
Use callout without custom Jekyll plugin.
This commit is contained in:
@@ -90,13 +90,14 @@ $('#example').tooltip(options)
|
||||
|
||||
The required markup for a tooltip is only a `data` attribute and `title` on the HTML element you wish to have a tooltip. The generated markup of a tooltip is rather simple, though it does require a position (by default, set to `top` by the plugin).
|
||||
|
||||
{% callout warning %}
|
||||
{% capture callout %}
|
||||
##### Making tooltips work for keyboard and assistive technology users
|
||||
|
||||
You should only add tooltips to HTML elements that are traditionally keyboard-focusable and interactive (such as links or form controls). Although arbitrary HTML elements (such as `<span>`s) can be made focusable by adding the `tabindex="0"` attribute, this will add potentially annoying and confusing tab stops on non-interactive elements for keyboard users. In addition, most assistive technologies currently do not announce the tooltip in this situation.
|
||||
|
||||
Additionally, do not rely solely on `hover` as the trigger for your tooltip, as this will make your tooltips impossible to trigger for keyboard users.
|
||||
{% endcallout %}
|
||||
{% endcapture %}
|
||||
{% include callout.html content=callout type="warning" %}
|
||||
|
||||
{% highlight html %}
|
||||
<!-- HTML to write -->
|
||||
@@ -238,16 +239,16 @@ Options can be passed via data attributes or JavaScript. For data attributes, ap
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
{% callout info %}
|
||||
{% capture callout %}
|
||||
#### Data attributes for individual tooltips
|
||||
|
||||
Options for individual tooltips can alternatively be specified through the use of data attributes, as explained above.
|
||||
{% endcallout %}
|
||||
{% endcapture %}
|
||||
{% include callout.html content=callout type="info" %}
|
||||
|
||||
### Methods
|
||||
|
||||
{% capture callout-include %}{% include callout-danger-async-methods.md %}{% endcapture %}
|
||||
{{ callout-include | markdownify }}
|
||||
{% include callout-danger-async-methods.md %}
|
||||
|
||||
#### `$().tooltip(options)`
|
||||
|
||||
|
||||
Reference in New Issue
Block a user