良いWEBデザイン「WEB制作会社」(8/100)

20111031122853
◎海外のWEB制作会社。
◎縦型の仕掛けサイト。ジュースの中身が、スクロールで変化するのが、面白い。
この間習った、position:fixedとbackground-attachment scrollで作っているらしい(多分)。Z-indexも指定していた。
構造は、私には難しいけど、習った事が出てくるのは、楽しい。
↓ここに鍵がある?(多分)
div.juice {
position:fixed;
left: 50%;
height:2000px;
width:1165px;
margin-left: -582px; /* negative Hälfte von width:600px */
top:-400px;
z-index:1;
background-image: url(../images/layout/juice.png);
background-repeat: repeat-x;
background-attachment:scroll;
background-position:center bottom;
}