適用 (対象)
スクリプトでコントロールされる、コンテンツのスクロールをサポートするウェブコンテンツ技術
これは、次の達成基準に関する達成方法である:
- 達成基準 2.2.1: タイミング調整可能 (十分な達成方法)
- 達成基準 2.2.2: 一時停止、停止、非表示 (十分な達成方法)
解説
この達成方法の目的は、スクロールするコンテンツがスクリプトで作成されている場合に、利用者にそのスクロールを停止する手段を提供することである。スクロールするコンテンツは、ロービジョンや認知障害の利用者にとって読みにくかったり、全く読めなかったりする。また、動くものは、一部の人々にとって、ウェブページのほかの部分に集中することへの妨げとなる。
事例
例 1
この例では、CSS 及び JavaScript を用いて、いくつかのテキストを視覚的にスクロールさせている。スクロールの移動を停止するためのリンクが含まれている。
この方法では、JavaScript 又は CSS がサポートされていないか有効になっていないときは、すべてのテキストを表示し、リンクを省略する。
下のコードは、webSemantic によるアクセシブルなスクローラー (2008 年 7 月) の修正版である。
XHTML 部分:
... <div id="scroller"> <p id="tag">This text will scroll and a Pause/Scroll link will be present when Javascript and CSS are supported and active.</p> </div> ...
CSS 部分:
... body {font:1em verdana,sans-serif; color:#000; margin:0} /* position:relative and overflow:hidden are required */ #scroller { position:relative; overflow:hidden; width:15em; border:1px solid #008080; } /* add formatting for the scrolling text */ #tag { margin:2px 0; } /* #testP must also contain all text-sizing properties of #tag */ #testP { visibility:hidden; position:absolute; white-space:nowrap; } /* used as a page top marker and to limit width */ #top { width:350px; margin:auto; } ...
JavaScript 部分:
var speed=50 // speed of scroller var step=3 // smoothness of movement var StartActionText= "Scroll" // Text for start link var StopActionText = "Pause" // Text for stop link var x, scroll, divW, sText="" function onclickIE(idAttr,handler,call){ if ((document.all)&&(document.getElementById)){idAttr[handler]="Javascript:"+call} } function addLink(id,call,txt){ var e=document.createElement('a') e.setAttribute('href',call) var linktext=document.createTextNode(txt) e.appendChild(linktext) document.getElementById(id).appendChild(e) } function getElementStyle() { var elem = document.getElementById('scroller'); if (elem.currentStyle) { return elem.currentStyle.overflow; } else if (window.getComputedStyle) { var compStyle = window.getComputedStyle(elem, ''); return compStyle.getPropertyValue("overflow"); } return ""; } function addControls(){ // test for CSS support first // test for the overlow property value set in style element or external file if (getElementStyle()=="hidden") { var f=document.createElement('div'); f.setAttribute('id','controls'); document.getElementById('scroller').parentNode.appendChild(f); addLink('controls','Javascript:clickAction(0)',StopActionText); onclickIE(document.getElementById('controls').childNodes[0],"href",'clickAction(0)'); document.getElementById('controls').style.display='block'; } } function stopScroller(){clearTimeout(scroll)} function setAction(callvalue,txt){ var c=document.getElementById('controls') c.childNodes[0].setAttribute('href','Javascript:clickAction('+callvalue+')') onclickIE(document.getElementById('controls').childNodes[0],"href",'clickAction ('+callvalue+')') c.childNodes[0].firstChild.nodeValue=txt } function clickAction(no){ switch(no) { case 0: stopScroller(); setAction(1,StartActionText); break; case 1: startScroller(); setAction(0,StopActionText); } } function startScroller(){ document.getElementById('tag').style.whiteSpace='nowrap' var p=document.createElement('p') p.id='testP' p.style.fontSize='25%' //fix for mozilla. multiply by 4 before using x-=step if (document.getElementById('tag').className) p.className=document.getElementById ('tag').className p.appendChild(document.createTextNode(sText)) document.body.appendChild(p) pw=p.offsetWidth document.body.removeChild(p) if (x<(pw*4)*-1){x=divW} document.getElementById('tag').style.left=x+'px' scroll=setTimeout('startScroller()',speed) } function initScroller(){ if (document.getElementById && document.createElement && document.body.appendChild) { addControls(); divW=document.getElementById('scroller').offsetWidth; x=divW; document.getElementById('tag').style.position='relative'; document.getElementById('tag').style.left=divW+'px'; var ss=document.getElementById('tag').childNodes; for (i=0;i<ss.length;i++) {sText+=ss[i].nodeValue+" "}; scroll=setTimeout('startScroller()',speed); } } function addLoadEvent(func) { if (!document.getElementById | !document.getElementsByTagName) return var oldonload = window.onload if (typeof window.onload != 'function') { window.onload = func; } else { window.onload = function() { oldonload() func() } } } addLoadEvent(initScroller)
このコードの動作例: コンテンツのスクロールにスクリプトを用い、停止する仕組みを提供しているサンプル
参考リソース
参考リソースは、あくまでも情報提供のみが目的であり、推薦などを意味するものではない。
検証
手順
- スクロールするコンテンツを一時停止するメカニズムが提供されていることを確認する。
- 一時停止するメカニズムを用いて、コンテンツのスクロールを一時停止する。
- スクロールが停止し、自動的に再起動しないことを確認する。
- 一時停止中のコンテンツを再起動できるメカニズムが提供されていることを確認する。
- 提供されている再起動のメカニズムを用いて、コンテンツのスクロールを再起動する。
- 停止していた位置からスクロールが再開されることを確認する。
期待される結果
- #3 及び #6 の結果が真である。