hene

hene.dev

Log:

2019/02/19

やったこと

やること

困っていること

その他

og:image

相対パスで指定すると反映されなかったので、絶対パスで指定した。

transition

複数指定できる。

transition: color 0.5s linear, border 0.5s linear;

nth-last-child

最後から数えて 2 番目まで設定。

&:nth-last-child(-n + 2) {
  margin-bottom: 0;
}

-child-of-type の違い。

setTimeout

ネストしちゃう場合、どうすればよいのか。これで良いのか?

$(function() {
  setTimeout(function() {
    $(".test").addClass("inline");
    setTimeout(function() {
      $(".test").removeClass("inline");
    }, 1000);
  }, 3000);
});

Vue

Animate.css