Skip to content
Snippets Groups Projects
Commit ff0521e3 authored by syuilo's avatar syuilo
Browse files

enhance(client): アニメーションを減らす設定の適用範囲を拡充

parent 8cabc595
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@
- クライアント: ノート本文を投稿フォーム内でプレビューできるように
- クライアント: 未読の通知のみ表示する機能
- クライアント: 通知ページで通知の種類によるフィルタ
- クライアント: アニメーションを減らす設定をメニューのアニメーションにも適用するように
- クライアント: アニメーションを減らす設定の適用範囲を拡充
- クライアント: 新しいダークテーマを追加
- クライアント: テーマコンパイラに hue と saturate 関数を追加
- ActivityPub: HTML -> MFMの変換を強化
......
......@@ -23,12 +23,14 @@ export default defineComponent({
},
mounted() {
VanillaTilt.init(this.$el, {
reverse: true,
gyroscope: false,
scale: 1.1,
speed: 500,
});
if (this.$store.animation) {
VanillaTilt.init(this.$el, {
reverse: true,
gyroscope: false,
scale: 1.1,
speed: 500,
});
}
},
methods: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment