2015年4月24日金曜日

マウスホバーで画像がせり出す

あるWebサイト[PhotoshopVIP]をみていたら、へーとなったので、メモ。

画像にマウスカーソルを乗せると、画像がページからせり出してみえる。

img:hover {
  box-shadow: 0 11px 18px rgba(0,0,0,0.2);
  -webkit-transform: translateY(-10px) scale(1.02, 1.02);
  -moz-transform: translateY(-10px) scale(1.02, 1.02);
  transform: translateY(-10px) scale(1.02, 1.02);
}

機会があったら、使ってみたい。

2015年4月2日木曜日

The Like Box plugin is deprecated and will stop working on June 23rd 2015

With the release of Graph API v2.3, the Like Box plugin is deprecated and will stop working on June 23rd 2015. Use the new Page Plugin instead. The Page Plugin allows you to embed a simple feed of content from a Page into your websites.

https://developers.facebook.com/docs/plugins/like-box-for-pages

差替えないといけないのかな。

WordPressのタイトルでiPhoneがIPhoneになるとき

あれ、iPhoneがIPhoneになっちゃってる!と投稿内容を確認しても、iPhoneと入力されている。また、WordPressが余計なお世話を・・・と思ってググると、
なんとWordPressの関数の仕業なんかじゃなく、CSSに text-transform: capitalize; という機能が!

知らなかった。