ホームページ >ウェブフロントエンド >jsチュートリアル >アクセシビリティ (a) ルール - 3

アクセシビリティ (a) ルール - 3

Barbara Streisand
Barbara Streisandオリジナル
2024-11-18 20:32:02754ブラウズ

画像

画像に 代替テキスト を追加するだけではありません。それはそれをはるかに超えています。

装飾画像

  • 画像が追加のコンテキストや、ユーザーがコンテキストをよりよく理解できるようにする情報 (装飾画像) を追加しない場合は、スクリーン リーダーなどの支援技術 (AT) からその画像を非表示にする必要があります。

  • AT から画像を非表示にするには、次のいずれかの方法を使用します:

    • 空または null の代替テキスト (alt)
    • ARIA の適用
    • 画像を CSS 背景として追加します
<!-- All of these choices lead to the same result. -->
<img src=".../Ladybug.jpg" role="presentation">
<img src=".../Ladybug.jpg" role="none">
<img src=".../Ladybug.jpg" aria-hidden="true">
  • 疑問がある場合は、画像に説明を追加してください。

空または null の alt

  • 画像が純粋に装飾的なものでない限り、画像の alt 属性を「」に設定しないでください。
Attribute Example Screen Reader Behavior Use Case
alt="" (Empty) Ignores the image completely Decorative or non-informative images
Missing alt May read the filename/URL Not recommended; implies negligence

有益な画像

  • 画像がコンセプト、アイデア、または感情を伝える場合は、画像の目的を説明するプログラムによる代替テキストを含める必要があります。

  • 可能な限り、画像の詳細な説明を追加します。

例:

<img src=".../Ladybug_Swarm.jpg" alt="A swarm of red ladybugs is resting 
on the leaves of my prize rose bush.">

Accessibility (a) Rules - 3

  • 画像が (インライン) の場合は、role="img" を追加します。

  • 要素は alt 属性をサポートしていないため、別のコーディング方法を使用して説明を提供します。

Method Use Case Pros Cons
</td> <td>Short, brief descriptions</td> <td>Simple, widely supported</td> <td>Limited in length</td> </tr> <tr> <td>aria-label</td> <td>Brief descriptions</td> <td>Quick, inline</td> <td>Best for short text</td> </tr> <tr> <td>aria-labelledby</td> <td>Complex descriptions using <title> and <desc></td> <td>Comprehensive, flexible</td> <td>More verbose</td> </tr> <tr> <td><figcaption></td> <td>Visible description in a figure context</td> <td>Visible and accessible</td> <td>Not ideal for all SVGs</td> </tr> </tbody> </table></div> <h3> 機能的なイメージ </h3> <ul> <li><p>機能的な目的を持つ画像 (ホームページにリンクするロゴ、検索ボタンとして使用される虫眼鏡アイコンなど) には、適切な代替テキストを含める必要があります。</p></li> <li><p>代替テキストは、画像の視覚的な側面ではなく、<strong>画像のアクション</strong>を説明する必要があります。</p></li> <li><p>画像が有益で実用的な場合は、各要素に代替説明を追加できますが、これは必須ではありません。例:<br> </p></li> </ul> <pre class="brush:php;toolbar:false"><!-- All of these choices lead to the same result. --> <img src=".../Ladybug.jpg" role="presentation"> <img src=".../Ladybug.jpg" role="none"> <img src=".../Ladybug.jpg" aria-hidden="true"> </pre> <h3> 複雑な画像 </h3> <ul> <li><p>インフォグラフィック、地図、グラフ/チャート、複雑なイラストなど、装飾的、情報的、または機能的な画像よりも多くの説明が必要な画像の場合は、これらの方法のいずれかを使用して代替説明を追加します</p></li> <li><p>リソースにリンクするか、ページ後半の詳細な説明へのジャンプ リンクを提供します。例:<br> </p></li> </ul> <pre class="brush:php;toolbar:false"><img src=".../Ladybug_Swarm.jpg" alt="A swarm of red ladybugs is resting on the leaves of my prize rose bush."> </pre> <ul> <li>aria-descriptionby 属性を <img> に追加します。要素を使用して、画像を長い説明を含む ID にリンクします。例えば </li> </ul> <pre class="brush:php;toolbar:false"><div title="Navigate to the homepage"> <a href="/"> <img src=".../Ladybug_Logo.png" alt="Lovely Ladybugs for your Lawn"/> </a> </div> <h3> 代替テキストのベスト プラクティス </h3> <ul> <li><p>読者の疲労を避けるために、代替テキストの上限を 150 文字以下にすることをお勧めします。</p></li> <li><p>スクリーン リーダーがこれらのファイル タイプを識別するため、説明に <strong>「</strong> の画像」または <strong>「写真」</strong> などの単語を使用しないでください。</p></li> <li><p>画像に名前を付けるときは、できる限り一貫性があり、正確であるようにしてください。画像名は、代替テキストが欠落しているか無視されている場合のフォールバックです。</p></li> <li><p>英字以外の文字 (#、9、& など) の使用は避けてください </p></li> <li><p>画像名や代替テキストではアンダースコアではなく、単語の間にダッシュを使用します。</p></li> <li><p>可能な限り適切な句読点を使用してください。これがないと、画像の説明が長く、終わりのない、延々と続く一文のように聞こえてしまいます。</p></li> <li><p>ロボットではなく人間のように代替テキストを書きます。キーワードの詰め込みは誰の利益にもなりません。スクリーン リーダーを使用している人はイライラするでしょうし、検索エンジンのアルゴリズムによってペナルティを受けることになります。</p></li> </ul> </li> </ul><p>以上がアクセシビリティ (a) ルール - 3の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。</p></div><div class="nphpQianMsg"><a href="javascript:void(0);">css</a> <a href="javascript:void(0);">less</a> <a href="javascript:void(0);">NULL</a> <a href="javascript:void(0);">Resource</a> <a href="javascript:void(0);">if</a> <a href="javascript:void(0);">for</a> <a href="javascript:void(0);">include</a> <a href="javascript:void(0);">using</a> <a href="javascript:void(0);">Length</a> <a href="javascript:void(0);">Attribute</a> <a href="javascript:void(0);">cap</a> <a href="javascript:void(0);">append</a> <a href="javascript:void(0);">background</a> <a href="javascript:void(0);">idea</a><div class="clear"></div></div><div class="nphpQianSheng"><span>声明:</span><div>この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。</div></div></div><div class="nphpSytBox"><span>前の記事:<a class="dBlack" title="さまざまなブラウザでのキャンバス要素の最大サイズはどれくらいですか?" href="https://m.php.cn/ja/faq/1796689270.html">さまざまなブラウザでのキャンバス要素の最大サイズはどれくらいですか?</a></span><span>次の記事:<a class="dBlack" title="さまざまなブラウザでのキャンバス要素の最大サイズはどれくらいですか?" href="https://m.php.cn/ja/faq/1796689284.html">さまざまなブラウザでのキャンバス要素の最大サイズはどれくらいですか?</a></span></div><div class="nphpSytBox2"><div class="nphpZbktTitle"><h2>関連記事</h2><em><a href="https://m.php.cn/ja/article.html" class="bBlack"><i>続きを見る</i><b></b></a></em><div class="clear"></div></div><ins class="adsbygoogle" style="display:block" data-ad-format="fluid" data-ad-layout-key="-6t+ed+2i-1n-4w" data-ad-client="ca-pub-5902227090019525" data-ad-slot="8966999616"></ins><script> (adsbygoogle = window.adsbygoogle || []).push({}); </script><ul class="nphpXgwzList"><li><b></b><a href="https://m.php.cn/ja/faq/1609.html" title="Bootstrap リスト グループ コンポーネントの詳細な分析" class="aBlack">Bootstrap リスト グループ コンポーネントの詳細な分析</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/ja/faq/1640.html" title="JavaScript関数のカリー化の詳細説明" class="aBlack">JavaScript関数のカリー化の詳細説明</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/ja/faq/1949.html" title="JS パスワードの生成と強度検出の完全な例 (デモ ソース コードのダウンロード付き)" class="aBlack">JS パスワードの生成と強度検出の完全な例 (デモ ソース コードのダウンロード付き)</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/ja/faq/2248.html" title="Angularjs は WeChat UI (weui) を統合します" class="aBlack">Angularjs は WeChat UI (weui) を統合します</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/ja/faq/2351.html" title="JavaScript を使用して繁体字中国語と簡体字中国語をすばやく切り替える方法と、簡体字中国語と繁体字中国語の切り替えをサポートする Web サイトのトリック_javascript スキル" class="aBlack">JavaScript を使用して繁体字中国語と簡体字中国語をすばやく切り替える方法と、簡体字中国語と繁体字中国語の切り替えをサポートする Web サイトのトリック_javascript スキル</a><div class="clear"></div></li></ul></div></div><ins class="adsbygoogle" style="display:block" data-ad-format="autorelaxed" data-ad-client="ca-pub-5902227090019525" data-ad-slot="5027754603"></ins><script> (adsbygoogle = window.adsbygoogle || []).push({}); </script><footer><div class="footer"><div class="footertop"><img src="/static/imghwm/logo.png" alt=""><p>福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!</p></div><div class="footermid"><a href="https://m.php.cn/ja/about/us.html">私たちについて</a><a href="https://m.php.cn/ja/about/disclaimer.html">免責事項</a><a href="https://m.php.cn/ja/update/article_0_1.html">Sitemap</a></div><div class="footerbottom"><p> © php.cn All rights reserved </p></div></div></footer><script>isLogin = 0;</script><script type="text/javascript" src="/static/layui/layui.js"></script><script type="text/javascript" src="/static/js/global.js?4.9.47"></script></div><script src="https://vdse.bdstatic.com//search-video.v1.min.js"></script><link rel='stylesheet' id='_main-css' href='/static/css/viewer.min.css' type='text/css' media='all'/><script type='text/javascript' src='/static/js/viewer.min.js?1'></script><script type='text/javascript' src='/static/js/jquery-viewer.min.js'></script><script>jQuery.fn.wait = function (func, times, interval) { var _times = times || -1, //100次 _interval = interval || 20, //20毫秒每次 _self = this, _selector = this.selector, //选择器 _iIntervalID; //定时器id if( this.length ){ //如果已经获取到了,就直接执行函数 func && func.call(this); } else { _iIntervalID = setInterval(function() { if(!_times) { //是0就退出 clearInterval(_iIntervalID); } _times <= 0 || _times--; //如果是正数就 -- _self = $(_selector); //再次选择 if( _self.length ) { //判断是否取到 func && func.call(_self); clearInterval(_iIntervalID); } }, _interval); } return this; } $("table.syntaxhighlighter").wait(function() { $('table.syntaxhighlighter').append("<p class='cnblogs_code_footer'><span class='cnblogs_code_footer_icon'></span></p>"); }); $(document).on("click", ".cnblogs_code_footer",function(){ $(this).parents('table.syntaxhighlighter').css('display','inline-table');$(this).hide(); }); $('.nphpQianCont').viewer({navbar:true,title:false,toolbar:false,movable:false,viewed:function(){$('img').click(function(){$('.viewer-close').trigger('click');});}}); </script></body><!-- Matomo --><script> var _paq = window._paq = window._paq || []; /* tracker methods like "setCustomDimension" should be called before "trackPageView" */ _paq.push(['trackPageView']); _paq.push(['enableLinkTracking']); (function() { var u="https://tongji.php.cn/"; _paq.push(['setTrackerUrl', u+'matomo.php']); _paq.push(['setSiteId', '9']); var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s); })(); </script><!-- End Matomo Code --></html>