Log:
2019/02/19
やったこと
- hene
やること
困っていること
その他
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
の違い。
- 何番目系の便利な CSS まとめ - Qiita
- :nth-last-of-type() - CSS: カスケーディングスタイルシート | MDN
- :nth-last-child() - CSS: カスケーディングスタイルシート | MDN
setTimeout
ネストしちゃう場合、どうすればよいのか。これで良いのか?
$(function() {
setTimeout(function() {
$(".test").addClass("inline");
setTimeout(function() {
$(".test").removeClass("inline");
}, 1000);
}, 3000);
});
Vue
- Vue.js の v-bind:class で動的なクラス割り当て - 親バカエンジニアのナレッジ帳
- クラスとスタイルのバインディング — Vue.js
- イベントハンドリング — Vue.js
- 条件付きレンダリング — Vue.js
- [Vue warn]: The "data" option should be a function · Issue #14 · mobxjs/mobx-vue · GitHub