ホームページには、モーダルで開き、ユーザーがテキスト リンクをクリックすると再生される Wistia 埋め込みがあります。モーダルを自動的に開きますが、再生を開始しない特別な URL を作成したいと思います。
HTML:
<span class="wistia_embed wistia_async_i74bcbgfkm popover=true popoverAnimateThumbnail=true popoverContent=link wistia_embed_initialized" style="display:inline" id="wistia-i74bcbgfkm-1">
<div id="wistia_36.thumb_container" class="wistia_click_to_play" style="position: relative; display: inline;">
<a class="text-link" href="#">See the science. Watch video.</a>
</div>
</span>
JS:
// Auto Play Wistia Video via Specific Link
$(document).ready(function() {
if(window.location.href.indexOf('#science') != -1) {
## open modal?
}
});
これは可能ですか?