質問編集履歴
3
動作確認端末の追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -19,6 +19,10 @@
|
|
19
19
|
$('.one').text(window_height);
|
20
20
|
$('.two').text(keyboard_height);
|
21
21
|
```
|
22
|
+
### 動作確認端末
|
23
|
+
iphone11
|
24
|
+
iOS 16.3.1
|
25
|
+
safari バージョン16.3.1
|
26
|
+
chrome バージョン112.0.5615.167
|
22
27
|
|
23
|
-
|
24
28
|
[参考リンク](https://zenn.dev/catnose99/scraps/e9b1de4ddf2181)
|
2
誤字修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -14,8 +14,8 @@
|
|
14
14
|
```
|
15
15
|
|
16
16
|
```jQuery
|
17
|
-
window_height = $(window).height();
|
17
|
+
var window_height = $(window).height();
|
18
|
-
keyboard_height = visualViewport.height;
|
18
|
+
var keyboard_height = visualViewport.height;
|
19
19
|
$('.one').text(window_height);
|
20
20
|
$('.two').text(keyboard_height);
|
21
21
|
```
|
1
誤字修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -13,7 +13,7 @@
|
|
13
13
|
<span class="two"></span>
|
14
14
|
```
|
15
15
|
|
16
|
-
```
|
16
|
+
```jQuery
|
17
17
|
window_height = $(window).height();
|
18
18
|
keyboard_height = visualViewport.height;
|
19
19
|
$('.one').text(window_height);
|