Entries from 2016-07-24 to 1 day

HATEBU CSS

CSS

このblogのcssを少しだけ修正、気が向いたらまた修正しよう。 fontはgithubと同じにする。 Gistにした。 gist.github.com

swift-realm-sandbox

realm.io github.com まずは、簡単にデータをinsertするサンプル。 func testInsert1() { let myDog = DogModel() myDog.name = "Muck" } func testInsert2() { _ = DogModel(value: ["name" : "Pluto", "age": 3]) } func testInsert3() { _ = DogModel(val…

animate.cssを試してみる

Animate.css github.com アニメーションの状態を制御したい場合は、 直接cssを追加するのがいい様子、fadeInの時間を変更してみる。 @-webkit-keyframes fadeInDuration3 { from { opacity: 0; } to { opacity: 0.9; }}@keyframes fadeInDuration3 { from { …