どういうわけか可能であれば、誰かが私を正しい方向に向けることができますか.
特定のページへのリンクを記載したメールをユーザーに送信したいと考えています。そのページにモーダルがあり、URL に応じて特定のモーダルでページを開くようにしたいと考えています。例:
domain.com/story/#story1
OPEN でページを開き、id でモーダルを表示します#story1
誰かが助けてくれれば本当にありがたいです。
経由でページに移動しているときにモーダルウィンドウを開くことができました
("#Modal8").foundation('reveal', 'open');
誰かが私が使用することを提案しました
<script>
var hash = window.location.hash;
if (hash === "#story8") {
$('#Modal8').reveal({
animation: 'fadeAndPop', //fade, fadeAndPop, none
animationspeed: 300, //how fast animtions are
closeonbackgroundclick: true, //if you click background will modal close?
dismissmodalclass: 'close-reveal-modal' //element that will close an open modal
}); //You can use same modal or different modal to show success message
}
</script>
私は成功せずに試しました。