動画上にクリッカブルマップを作成する方法
OTHER FAQ
| カテゴリ | Core Ver. | 関連モジュール | タイトル |
|---|---|---|---|
| 言語 | 7.15 | Language | まだ翻訳されていない英語文、どうにかならない? |
| テーマ | 7.15 | CSS Injector | 簡単にCSSを追加したい |
| コンテンツの管理 | 6.x | Views Flag Calendar | 空き室予約のような仕組みは実現できますか? |
| コンテンツの作成 | 6.x | Views | カルーセルのように回転するコンテンツを作りたい |
| アップデート | 7.15 | Webform Backup_and_Migrate | drupal7.12 -> drupal7.14アップデートメモ |
| フォーム | 7.15 | Webform | WebformのEntity Translation |
| フォーム | 7.15 | Webform | Webform - 確認ページの多言語化 |
| コンテンツの作成 | 7.15 | Automatic_Nodetitles Automatic_Entity_Label | ノード投稿フォームにタイトル入力フォームを表示しない方法 |
コメント
動画の上にクリッカブルなレイアーを配置することで実現可能で
パーマリンク Submitted by actbrain on 2018/02/06 22:18.
動画の上にクリッカブルなレイアーを配置することで実現可能です。
下の動画の「左上」「左下」「右上」「右下」でクリックしてみてください。
この例は動画の上にセルが4つのtableを配置しalertしているだけですが、tableの代わりにクリッカブルマップを配置するような事もできると思います。
<style> div.wrapper { position: relative; width: 600px; height: 400px; } div.wrapper #map { position: absolute; left: 0; top: 0; z-index: 1; width: 600px; height: 400px; } #map td { width: 300px; heigth: 200px; } </style> <div class="wrapper"> <video id="test1" width="600" height="400" controls autoplay> <source src="./sites/default/files/mini-3.mp4" type="video/mp4"> <p>※ご利用のブラウザでは再生できません</p> </video> <table id="map"> <tbody> <tr> <td onclick="alert('左上')"></td> <td onclick="alert('右上')"></td> </tr> <tr> <td onclick="alert('左下')"></td> <td onclick="alert('右下')"></td> </tr> </tbody> </table> </div>ページ