Skip to content

Commit

Permalink
ライブ一覧画面のレイアウト調整
Browse files Browse the repository at this point in the history
  • Loading branch information
youthkee committed Apr 20, 2017
1 parent 8028c04 commit a02424f
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ライブをメモするLivelog</title>
<style>
.attendance {
color: #ff0000;
}
</style>
</head>
<body>

Expand All @@ -19,10 +24,8 @@ <h1>Livelog</h1>
<ul id="info">
</ul>

<button onclick="location.href='edit.html';">新規登録</button>
<p id="clear"></p>
<p id="export"></p>
<p id="import"><a href="import.html">インポート</a></p>
<p><button onclick="location.href='edit.html';">新規登録</button> <span id="clear"></span></p>
<p><span id="export"></span> <button onclick="location.href='import.html';">インポート</button></p>

</form>

Expand Down Expand Up @@ -189,24 +192,27 @@ <h1>Livelog</h1>
}

//アーティスト名の配列をつなげて文字列に変換
var artistsItemJoin = arrayJoin('', artistsItem);
var artistsItemJoin = arrayJoin(', ', artistsItem);

$('info').innerHTML += '<li><p>' + currentItem[i].date + '</p><p><a href="detail.html?live=' + currentItem[i].id + '">' + currentItem[i].title + '@' + currentItem[i].area + ' ' + currentItem[i].place + '</a></p><p>OPEN ' + currentItem[i].open + ' / START ' + currentItem[i].start + '</p><p>ARTIST ' + artistsItemJoin + '</p><p>TICKET ' + currentItem[i].ticket + ' ' + currentItem[i].attendance + '</p></li>';
$('info').innerHTML += '<li><p><a href="detail.html?live=' + currentItem[i].id + '">' + currentItem[i].title + '@' + currentItem[i].area + ' ' + currentItem[i].place + '</a></p><p>' + currentItem[i].date + ' OPEN ' + currentItem[i].open + ' / START ' + currentItem[i].start + '</p><p>ARTIST ' + artistsItemJoin + '</p><p>TICKET ' + currentItem[i].ticket + ' <span class="attendance">' + currentItem[i].attendance + '</span></p></li>';

}

$('clear').innerHTML = '<button onclick="allDataClear();">データクリア</button>';
$('export').innerHTML = '<a href="export.html">エクスポート</a>';
var exportButton = document.createElement('button');
exportButton.innerText = 'エクスポート';
exportButton.setAttribute('onclick', 'location.href="export.html";');
$('export').appendChild(exportButton);

} else {
//データが登録されていなかったら文言を表示
$('info').innerHTML = '<li>ライブが登録されていません。</li>';
}

//☆年のプルダウンを選択した時の処理
function changeYear(obj){

//選択した年のパラメーターを付けてリロード
location.href = 'index.html?year=' + obj.value;

}

//☆データを全削除する処理
Expand Down

0 comments on commit a02424f

Please sign in to comment.