新着! 私の44ページの電子書籍「44分でCSS」が発売されました! 😃
#transition-property
どのプロパティをトランジションするかを定義します。
default
transition-property: all;
要素はすべてのプロパティをトランジションします
transition-property: none;
要素はどのプロパティもトランジションしません。したがって、トランジションは瞬間的です。
transition-property: background;
要素はbackgroundプロパティのみをトランジションします。
transition-property: color;
要素はcolorプロパティのみをトランジションします。
transition-property: transform;
要素はtransformプロパティのみをトランジションします。