ishikawa note
front-end engineer / web director / YAMAGATA
もうぬげない
ぼくのニセモノをつくるには
テレビ番組で「りんごかもしれない」が紹介され、あっという間にファンになってしまったヨシタケシンスケさんの絵本「ぼくのニセモノをつくるには」。
ムスメが寝る前に読む絵本の中で、だんとつのナンバーワン。何度読まされたことか。
ブログ型テーマを作りました。
Posted in: a-blog cmsAdventCalendarテーマ
a-blog cms Advent Calendar 2016 の9日目は、山形からお届けします。
アクセス時、全画面に画像を表示させる
とりいそぎ、覚書き。
// CSS
#section01 {
background: url("sample.jpg") no-repeat 50% 50%;
background-size: cover;
}// script
$(document).ready(function(){
hsize = $(window).height();
$("#section01").css("height", hsize + "px");
});
$(window).resize(function(){
hsize = $(window).height();
$("#section01").css("height", hsize + "px");
});