Wixのアニメーション効果で、キーフレームの打ち込み(終始2点)、イージングによるカスタマイズができるようにしてほしいです。また、アニメーションにブラー機能を追加してほしいです。
具体的には以下のようなものを作成したいです。
<h1>
<span class="animation">I</span>
<span class="animation">want</span>
<span class="animation">to</span>
<span class="animation">make</span>
<span class="animation">an</span>
<span class="animation">animation</span>
<br class="br">
<span class="animation">like</span>
<span class="animation">this.</span>
<br class="br">
<span class="animation">Please</span>
<span class="animation">try</span>
<span class="animation">this.</span>
</h1>
<script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js">
</script>
<style>
@import url("https://fonts.googleapis.com/css?family=Montserrat&display=swap");
* {
padding: 0;
margin: 0;
}
body {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
font-family: "Montserrat Medium";
max-width: 40ch;
text-align: center;
transform: scale(1.3);
animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
}
@keyframes scale {
100% {
transform: scale(1.5);
}
}
span {
display: inline-block;
opacity: 0;
filter: blur(4px);
}
span.animation:nth-child(1) {
animation: fade-in 0.8s 0.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
span.animation:nth-child(2) {
animation: fade-in 0.8s 0.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
span.animation:nth-child(3) {
animation: fade-in 0.8s 0.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
span.animation:nth-child(4) {
animation: fade-in 0.8s 0.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
span.animation:nth-child(5) {
animation: fade-in 0.8s 0.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
span.animation:nth-child(6) {
animation: fade-in 0.8s 0.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
span.animation:nth-child(7) {
animation: fade-in 0.8s 0.7s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
span.animation:nth-child(8) {
animation: fade-in 0.8s 0.8s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
span.animation:nth-child(9) {
animation: fade-in 0.8s 0.9s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
span.animation:nth-child(10) {
animation: fade-in 0.8s 1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
span.animation:nth-child(11) {
animation: fade-in 0.8s 1.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
@keyframes fade-in {
100% {
opacity: 1;
filter: blur(0);
}
}
</style>
私がこれをサイトにHTMLコードで挿入しないのは、スクロールしたときにアニメーションが開始されるようにする方法がわからないからです。HTMLコードにスクロール時に表示するコードを書いても、コードは挿入したHTML内のスクロールでしか機能しないので、現時点でこれを実現するのは困難です。また、私はJavaScriptの知識を持ち合わせていないのでよくわからないのですが、Wix VeloのWix-animationにもBlurは見当たらなかったので実現できないのかと思いました。
最近Wixにアップデートが来て、Littieアニメーションが使えるようになったみたいですね!これで解決しました。
文字アニメーションは今の所After Effects+動画ボックスで実装してしまってるので芯を食った回答になるか恐縮ですが、私でしたらwix-animations APIのtimelineを使って実装できないか調べてみます。
https://www.wix.com/velo/reference/wix-animations/timeline
timelineアニメーションを検討したときに参考にリストに入れておいたWixFixの動画も併せて載せておきます。
https://youtu.be/ZaF3_TkY5LA
お助けになりましたら幸いです。
@けんじゃパイも さん リクエストありがとうございます。
Veloに詳しいパートナーさんでアドバイスができる方いらっしゃいましたらぜひコメントお願いします。