study-note

5. コンテンツを変形するCSS

目次


回転のプロパティ

  1. rotateプロパティ
  #child{
    rotate: 30deg;
  }
  1. transformプロパティ
  #child{
    transform: rotate(03deg);
  }


伸縮のプロパティ

  1. scaleプロパティ
  #child{
    scale: 2 1;
  }
  1. transformプロパティ
  #child{
    transform: scale(2, 1);
  }


移動のプロパティ

  1. translateプロパティ
  #child{
    translate: 100px 100px;
  }
  1. transformプロパティ
  #child{
    transform: translate(100px, 100px);
  }


6. アニメーションのCSS