Bootstrapのモーダルを閉じるとページのトップに戻ってしまうという問題が発生した場合、以下のコードの修正が助けになります。
<a class="modal-button" data-toggle="modal" data-target=".brand-story" href="">
<img class="lazyload play-movie" data-src="renew/img/play-movie.svg" alt="BRAND STORY PLAY MOVIE">
</a>
問題の原因は、.play-movie
にposition: absolute
が設定されていたことでした。それを.modal-button
にposition: absolute
を設定することで解決しました。
具体的な原因は不明ですが、この解決策が助けになることを願っています。