[Client] UIの動きを減らすオプションが一部のアニメーションに適用されなかったのを修正

Resolve #3632
This commit is contained in:
syuilo 2018-12-17 17:21:36 +09:00
parent ada6bb5baf
commit e0d6b1f0fd
2 changed files with 4 additions and 0 deletions

View File

@ -67,6 +67,8 @@ export default Vue.extend({
});
},
anime(reaction: string) {
if (this.$store.state.device.reduceMotion) return;
this.$nextTick(() => {
const rect = this.$refs[reaction].$el.getBoundingClientRect();

View File

@ -2,6 +2,8 @@ import Particle from '../components/particle.vue';
export default {
bind(el, binding, vn) {
if (vn.context.$store.state.device.reduceMotion) return;
el.addEventListener('click', () => {
const rect = el.getBoundingClientRect();