質問編集履歴
1
animsition情報を追記しました
title
CHANGED
File without changes
|
body
CHANGED
@@ -3,6 +3,8 @@
|
|
3
3
|
<開発環境>
|
4
4
|
|
5
5
|
React: 16.4.2
|
6
|
+
Animsition
|
7
|
+
[http://git.blivesta.com/animsition/](http://git.blivesta.com/animsition/)
|
6
8
|
|
7
9
|
下記のソースコードで実行すると、ローディング画面のものがずっと動いているような画面になってしまいます。
|
8
10
|
|
@@ -55,5 +57,32 @@
|
|
55
57
|
}
|
56
58
|
```
|
57
59
|
|
60
|
+
```JavaScript
|
61
|
+
$(document).ready(function() {
|
62
|
+
$(".animsition").animsition({
|
63
|
+
inClass: 'fade-in-up',
|
64
|
+
outClass: 'fade-out-up',
|
65
|
+
inDuration: 1500,
|
66
|
+
outDuration: 800,
|
67
|
+
linkElement: '.animsition-link',
|
68
|
+
// e.g. linkElement: 'a:not([target="_blank"]):not([href^="#"])'
|
69
|
+
loading: true,
|
70
|
+
loadingParentElement: 'body', //animsition wrapper element
|
71
|
+
loadingClass: 'animsition-loading',
|
72
|
+
loadingInner: '', // e.g '<img src="loading.svg" />'
|
73
|
+
timeout: false,
|
74
|
+
timeoutCountdown: 5000,
|
75
|
+
onLoadEvent: true,
|
76
|
+
browser: [ 'animation-duration', '-webkit-animation-duration'],
|
77
|
+
// "browser" option allows you to disable the "animsition" in case the css property in the array is not supported by your browser.
|
78
|
+
// The default setting is to disable the "animsition" in a browser that does not support "animation-duration".
|
79
|
+
overlay : false,
|
80
|
+
overlayClass : 'animsition-overlay-slide',
|
81
|
+
overlayParentElement : 'body',
|
82
|
+
transition: function(url){ window.location.href = url; }
|
83
|
+
});
|
84
|
+
});
|
85
|
+
```
|
86
|
+
|
58
87
|
根本的に遷移のやり方がが間違っているのかもしれません。
|
59
88
|
なにかいいアイデアがあれば教えていただければと思います。
|