バコ!

バコ!ってオモチャ箱のバコです。

2013-01-18から1日間の記事一覧

Macに似合うキーボード

Appleのキーボードのキーが白いのが許せないんです。Appleで白い部分なんてないんです。昔のiMacの使い回しですか。MacBookはちゃんと黒いのに。 ってことで、ずっとAppleに似合うキーボードを探してるんです。買ってみたもののダメだったり、高すぎて買えな…

$(function(){ $('input.search-module-input').attr('placeholder', '検索はココだよ!') }) $(function(){ var target = $('#rakuten_sidebar'); var targetY = target.offset().top; var targetH = target.height(); var htmlH = $('html').height(); $(window).scroll(function () { var windowY = $(this).scrollTop(); if( windowY >= targetY) { if (windowY < htmlH - targetH - 200) { target.css({"position":"fixed", "top":'0px'}) } else { target.css({"position":"absolute", 'top': htmlH - targetH - 320}) } } else { target.css("position","static"); } }); });