前回の簡単なサンプルを作ったところでもうおしまいと思ったのですが、せっかくですので上の写真のようなもう少し見栄えのよいサンプルを作って見ることにしました。
Dropsの画像を4種類表示して、クリックするとそれぞれ4種類のことばを発声します。 発声する音声は、第1回と2回で説明した方法で録音したものを使用しました。サンプルプログラムは、第3回で使用したサンプルをすこし改造しました。
サンプルはあとで説明するindex.htmlとindex.cssと録音した音声ファイル4種と、dropsのシンボル4種類を使っています。
録音したのは、4種類のことばです。
「こんにちは」これをvoice1.wav
「さようなら」これをvoice2.wav
「ありがとう」これをvoice3.wav
「ごめんなさい」これをvoice4.wav と保存しました。
またDropsのシンボルのうち、
204001こんにちは.gif をimg1.gif
204002さようなら.gif をimg2.gif
204085ありがとう.gif をimg3.gif
204086ごめんなさい.gif をimg4.gif と名前を変更しました。
今回のサンプルのindex.htmlは以下のようになっています。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | <!DOCTYPE html> < html > < head > < meta charset = "utf-8"" http-equiv = "content-type" > < meta name = "viewport" content = "width=device-width, user-scalable=no" > < meta name = "apple-mobile-web-app-capable" content = "yes" > < meta name = "apple-mobile-web-app-status-bar-style" content = "black-translucent" > < title >VOCA2</ title > < link rel = "stylesheet" type = "text/css" href = "index.css" > </ head > < body > //音声ファイルの設定 < audio id = "sound1" > < source src = "voice1.wav" type = "audio/wav" > Your browser does not support the audio element. </ audio > < audio id = "sound2" > < source src = "voice2.wav" type = "audio/wav" > Your browser does not support the audio element. </ audio > < audio id = "sound3" > < source src = "voice3.wav" type = "audio/wav" > Your browser does not support the audio element. </ audio > < audio id = "sound4" > < source src = "voice4.wav" type = "audio/wav" > Your browser does not support the audio element. </ audio > //シンボル設定と表示部分 < div id = "contents" > < div class = "fig1" > < a onclick = "play1();" >< img src = "./img1.gif" ></ a > </ div > < div class = "fig2" > < a onclick = "play2();" >< img src = "./img2.gif" ></ a > </ div > < div class = "fig3" > < a onclick = "play3();" >< img src = "./img3.gif" ></ a > </ div > < div class = "fig4" > < a onclick = "play4();" >< img src = "./img4.gif" ></ a > </ div > </ div > //クリックで再生する部分 < script type = "text/javascript" > var TARGET1 = document.getElementById('sound1'); function play1(){ TARGET1.play(); } var TARGET2 = document.getElementById('sound2'); function play2(){ TARGET2.play(); } var TARGET3 = document.getElementById('sound3'); function play3(){ TARGET3.play(); } var TARGET4 = document.getElementById('sound4'); function play4(){ TARGET4.play(); } </ script > </ body > </ html > |
index.cssは以下の通りです。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | body { margin : 0 ; } #contents { position : relative ; width : 100 vw ; height : 100 vh ; float : left ; border : 1px solid #aaa ; } .fig 1 img { width : 300px ; height : 300px ; position : absolute ; top : 10 vh ; left : 15 vw ; } .fig 2 img { width : 300px ; height : 300px ; position : absolute ; top : 10 vh ; right : 15 vw ; } .fig 3 img { width : 300px ; height : 300px ; position : absolute ; bottom : 10 vh ; left : 15 vw ; } .fig 4 img { width : 300px ; height : 300px ; position : absolute ; bottom : 10 vh ; right : 15 vw ; } |
音声ファイル4種、画像ファイル4種、そしてindex.htmlとindex.cssの合計10のファイルを同じ場所に保存して使います。
このサンプルは下記にあります。お使いのモニターに合わせて選んでください。
三種類のサンプルの違いは、index.cssの表示の大きさを指定している部分だけです。
今期は『自由自在にVOCAはできるか?』シリーズのおまけとして、サンプルの作り方を説明しました。ここまでのシリーズで、自由に音声ファイルを作れるようになりました。また『視覚シンボルで楽々コミュニケーション』1,2という本が手に入ると、2000種類のDropsシンボルが自由に使えるようになります。これらを元にして、上で説明したプログラムに応用して使うと、一画面に四種類の画像を表示したVOCAを作ることができます。またよくよく見ると、八種類表示もそれほどむつかしくないことがわかってきます。
ここまでの学習でもう自由自在に何百、何千種類のVOCAを作れる様になりました。あとは練習次第、アイデア次第でもっと広がっていくことと思います。 そして残された問題は、これらの道具をどう活用していくかになりました。このように本当に重要な問題の入り口までたどり着くことができました。
以上を持ちまして、自由自在にVOCAはできるか?を本当におわりたいと思います。
Droplet Projectについて
http://droplet.ddo.jp/
2018/07/20 公開
研究企画課リハ工学科にもどる