ジフアニメーション2 (シネマグラフ)
シネマグラフとは?
画像の一部のみをアニメーションさせた画像
シネマグラフ例


シネマグラフがうまくできるムービーの条件
1. カメラが固定されていること
2. ループの繋ぎ目が気になりにくい動きであること
3. 動いてる部分の背景に動きがないこと
手順
- 1.ファイル/読み込み/ビデオフレームからレイヤー
※MacはRosettaを必要とする場合あり。

- 2.マーカーで読み込み範囲を指定

- 3.ウィンドウ/タイムライン/全フレーム選択/パネルメニューからフレームコピー/フレームペースト

フレームを入れ替え
- 4.ダブりのフレームを削除
- レイヤーパネル/レイヤー1コピー(一番下へ)/それ以外のレイヤーをグループ化
- 5.動いている部分を選択/レイヤーマスク

- 6.web用に書出し/gif形式
動画素材サイト
NHKクリエイティブ・ライブラリー
Mazwai
mixkit
vidsplay
指定校

使用テキスト
Cafe Dreams
カフェの夢
美味しいジュースと心地よい空間で、一息つきませんか?
HOME
カフェのストーリー
メニュー
イベント情報
アクセス
Copyright © 2023 All rights reserved.
html(09/05)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
<body> <!-- Hero Header --> <header> <h1><i class="fa-solid fa-mug-saucer"></i>Cafe <span>D</span>reams</h1> <div class="container"> <p class="copy"><span>カフェの夢</span>美味しいジュースと心地よい空間で、<br>一息つきませんか?</p> <nav class="pcnav"> <ul> <li><a href="#">HOME</a></li> <li><a href="#">カフェのストーリー</a></li> <li><a href="#">メニュー</a></li> <li><a href="#">イベント情報</a></li> <li><a href="#">アクセス</a></li> </ul> </nav> </div> </header> <!-- Sp parts --> <div class="btn"><span></span></div> <nav class="spnav"> <ul> <li><a href="#">HOME</a></li> <li><a href="#">カフェのストーリー</a></li> <li><a href="#">メニュー</a></li> <li><a href="#">イベント情報</a></li> <li><a href="#">アクセス</a></li> </ul> </nav> <!-- Footer --> <footer> <p><small>Copyright © 2023 All rights reserved.</small></p> </footer> <script> document.querySelector('.btn').addEventListener('touchstart',function(){ this.classList.toggle('spin'); }); </script> </body> |
css(09/05)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
|
@charset "utf-8"; /* Reset */ *{ margin: 0; padding: 0; } body{ line-height: 1; font-family: sans-serif; color: #fff; } ul{ list-style: none; } a{ text-decoration: none; display: block; color: inherit; } /* Header */ header{ height: 100vh; height: 100dvh; background: url(../img/juce2.gif) no-repeat center/cover; } /* h1タイトル */ h1{ font-size: 6em; font-family:'Tangerine', cursive; letter-spacing: 7px; border-bottom: 5px solid rgb(249, 194, 77); padding-block: 30px 20px; width: fit-content; margin: 0 auto 30px; } h1 i{ font-size: 0.5em; margin-right: 10px; } h1 span{ color: rgb(249, 194, 77); text-shadow: 0 0 5px #500, 0 0 5px #500, 0 0 5px #500, 0 0 5px #500; } /* Container */ .container{ max-width: 1000px; margin-inline: auto; padding-inline: 1em; display: flex; justify-content:space-between; align-items: center; } /* キャッチコピー */ .copy{ font-size: 1.5em; line-height: 1.4; background: linear-gradient(90deg,#000 ,transparent); padding: 1em; } .copy span{ display: block; font-size: 1.5em; font-weight: bold; color: rgb(249, 194, 77); margin-bottom:1em; } /* Pc Navigation */ .pcnav{ text-align: right; font-size: 1.5em; } .pcnav li + li{ margin-top: 10px; } .pcnav a::after{ content: ""; display: block; height:3px; background: rgb(249, 194, 77); margin-top: 3px; scale: 0 1; transform-origin:right; transition: 300ms; } .pcnav a:hover::after{ scale: 1; } .spnav{ display:none; } /* Footer */ footer{ color: #fff; position: absolute; bottom: 20px; width: 100%; text-align: center; } @media (width <= 743px){ h1{ font-size: 4em; } /* 2カラム→1カラム */ .container{ display: block; padding: 0; } /* Pc navigation */ .pcnav{ display: none; } /* キャッチコピー */ .copy{ /* outline: 3px solid #f00; */ text-align: center; background: linear-gradient(#000 ,transparent); font-size: 1.1em; } .copy span{ font-size: 2em; } /* Hamburger btn */ .btn{ display: block; width:50px; height: 50px; position: fixed; top: 5px; right: 5px; z-index: 10; } .btn span, .btn span::before, .btn span::after{ content: ""; display: block; width:35px; height: 4px; background: #fff; border-radius: 3px; position: absolute; margin: auto; inset: 0; transition: 300ms; } .btn span::before{ translate: 0 -10px; } .btn span::after{ translate: 0 10px; } /* ボタンタッチ時のcss */ .spin span{ background: transparent; } .spin span::before{ rotate: 220deg; } .spin span::after{ rotate: -220deg; } /* Sp Navigation */ .spnav{ display: none; background: rgba(0, 0, 0, 0.4); position: fixed; top: 0; width:100%; height: 100vh; height: 100dvh; box-sizing: border-box; padding-top: 70px; translate: 100% 0; transition: 300ms; } .spin + .spnav{ translate: 0; } .spnav li{ text-align: center; line-height: 70px; font-size: 1.5em; font-weight: bold; } } |
スマホ
