-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (91 loc) · 5.07 KB
/
index.html
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Menu</title>
<meta charset=utf-8>
<meta http-equiv=X-UA-Compatible content="IE=edge">
<meta name=viewport content="width=device-width,initial-scale=1">
<!--
bulma
https://bulma.io/
form基本
https://bulma.io/documentation/form/general/
columns (grid)システム(is-0 ~ is-12)
https://bulma.io/documentation/columns/sizes/
https://bulma.io/documentation/columns/gap/
メッセージ
https://bulma.io/documentation/components/message/
ボタン(色)
https://bulma.io/documentation/modifiers/syntax/
https://bulma.io/documentation/elements/button/
元
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.1/css/bulma.min.css">
-->
<link rel="stylesheet" href="./css/bulma.min.css">
<!--
fa-××のアイコン
https://bulma.io/documentation/elements/icon/ ⇒ https://fontawesome.com/ ⇒ https://fontawesome.com/icons?d=gallery&q=search&m=free
※こちらのコンポーネント直リンクしないとアイコンでない
-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
</head>
<body>
<div id="app">
<div class="column">
<article class="message is-success">
<div class="message-header">
<p>サンプル(■■PCブラウザ推奨!!■■)</p>
</div>
<div class="message-body MessageBodyPanel">
<div class="field is-horizontal">
<div class="field-body">
<button class="button is-info is-fullwidth" onclick="window.location.href = './sample/chugoku.html';">住所表(純粋なvue.jsのみ)</button>
</div>
</div>
<div class="field is-horizontal">
<div class="field-body">
<button class="button is-info is-fullwidth" onclick="window.location.href = './sample/chugokupulldown.html';">住所表コンボ選択 ページング(doracomponent.js使用)等あり</button>
</div>
</div>
<div class="field is-horizontal">
<div class="field-body">
<button class="button is-info is-fullwidth" onclick="window.location.href = './sample/formattest.html';">フォーマット(&バリデーション)</button>
</div>
</div>
<div class="field is-horizontal">
<div class="field-body">
<button class="button is-info is-fullwidth" onclick="window.location.href = './sample/shainmaster.html';">本気の社員マスタ(ほぼぐちゃぐちゃ)</button>
</div>
</div>
<div class="field is-horizontal">
<div class="field-body">
<button class="button is-info is-fullwidth" onclick="window.location.href = './sample/shainmastervscroll.html';">本気の社員マスタ↑↑↑の仮想スクロール版(現状スマホNG)</button>
<!-- スマホNGな理由 resize イベントが勝手に発動するため・・ -->
</div>
</div>
<div class="field is-horizontal">
<div class="field-body">
<button class="button is-info is-fullwidth" onclick="window.location.href = './sample/shainmasterlist.html';">本気の社員マスタ(一覧+詳細入力)基本こちら?</button>
</div>
</div>
<div class="field is-horizontal">
<div class="field-body">
<button class="button is-info is-fullwidth" onclick="window.location.href = './sample/fileupload.html';">ファイルアップロード</button>
</div>
</div>
<div class="field is-horizontal">
<div class="field-body">
<button class="button is-info is-fullwidth" onclick="window.location.href = './sample/summarytest.html';">入力-合計計算(200件超が限界?)</button>
</div>
</div>
<div class="field is-horizontal">
<div class="field-body">
<button class="button is-info is-fullwidth" style="height:60px" onclick="window.location.href = './sample/summarytestvscroll.html';">入力-合計計算(仮想スクロール(virtual scroll))<br/>※1000件程度でも良好</button>
</div>
</div>
</div>
</article>
</div>
</div>
</body>
</html>