ページのロゴの上にカーソルを置いているときに、非表示の div を表示しようとしています。
ウェブサイトは次のとおりです。http://www.enbloc-magazin.de/
私が言ったように、ロゴの上にホバリングしているときにコンテナ(#snowflakesContainer、display:none;)を表示したいと思います。
私は次のようないくつかのスクリプトを使用しました:
$('#logo').hover(function() {
$('#snowflakesContainer').toggle();
});
しかし、何も機能しませんでした。
非表示のコンテナの CSS は次のとおりです。
#snowflakesContainer {
top: -553px;
position: absolute;
width: 100%;
height: 100%;
display: none;
}
助けてくれてありがとう!