JQueryの使用方法がわからないため、JavaScriptのみを使用してアニメーションをトリガーできるメソッドが必要です。
ユーザーがページをスクロールするときに、CSSアニメーションを呼び出す/トリガーする必要があります。
function start() {
document.getElementById('logo').style.animation = "anim 2s 2s forward";
document.getElementById('earthlogo').style.animation = "anim2 2s 2s forward";
}
* {
margin: 0px;
}
#logo {
position: fixed;
top: 200px;
height: 200px;
width: 1000px;
left: 5%;
z-index: 4;
opacity: 0.8;
}
#earthlogo {
position: fixed;
top: 200px;
height: 120px;
align-self: center;
left: 5%;
margin-left: 870px;
margin-top: 60px;
z-index: 4;
opacity: 0.9;
}
@keyframes anim {
50% {
filter: blur(10px);
transform: rotate(-15deg);
box-shadow: 0px 0px 10px 3px;
}
100% {
height: 100px;
width: 500px;
left: 10px;
top: 10px;
box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.7);
background-color: rgba(0, 0, 1, 0.3);
opacity: 0.7;
}
}
@keyframes anim2 {
50% {
filter: blur(40px);
transform: rotate(-15deg);
}
100% {
height: 60px;
width: 60px;
left: 10px;
top: 10px;
margin-left: 435px;
margin-top: 30px;
opacity: 0.8;
}
}
#backstar {
position: fixed;
width: 100%;
z-index: 1;
}
#earth {
position: absolute;
width: 100%;
z-index: 2;
top: 300px;
}
<img src="logo.png" id="logo" onclick="start();">
<img src="earthlogo.gif" id="earthlogo" onscroll="start();">
<img src="earth.png" id="earth">
<img src="stars.jpg" id="backstar">
CSSアニメーションをトリガーする最も簡単な方法は、クラスを追加または削除することです-純粋なJavascriptでこれを行う方法については、こちらをご覧ください。
JQueryを使用する場合(基本的な使い方を学ぶのは本当に簡単です)、単にaddClass
/removeClass
を使用します。
次に必要なのは、次のように特定の要素に遷移を設定することです。
.el {
width:10px;
transition: all 2s;
}
そして、要素にクラスがある場合、その状態を変更します。
.el.addedclass {
width:20px;
}
注:この例は移行を伴うものでした。ただし、アニメーションの場合も同じです。クラスが存在する要素にアニメーションを追加するだけです。
CSSを使用して画像/アニメーションを非表示にし、ユーザーがスクロールしたときに表示することができます。これは次のように機能します。
CSS:
div {
border: 1px solid black;
width: 200px;
height: 100px;
overflow: scroll;
}
#demo{
display: none;
}
HTML:
<div id="myDIV"> </div>
<div id="demo">
<img src="earthlogo.gif" id="earthlogo" alt="Thanks for scrolling. Now you see me">
</div>
Javascriptには、アニメーションの表示をトリガーする関数を呼び出すeventListenerを含める必要があります。
JS:
document.getElementById("myDIV").addEventListener("scroll", start);
function start() {
document.getElementById('demo').style.display='block';
}
バニラJSバージョン
document.getElementById('logo').classList.add("anim");
document.getElementById('earthlogo').classList.add("anim2");