View on GitHub

reading-notes

Reading Notes about Markdown-Html-Css-JavaScript

CSS transforms

CSS transforms change the shape and position of the affected content without disrupting the normal document flow. This guide provides an introduction to using transforms.

1- transform :- property specifies how nested elements are rendered in 3D space.

2- transform-origin :- allows you to change the position of transformed elements. __

 div.a {
  transform: rotate(20deg);
}

div.b {
  transform: skewY(20deg);
}

div.c {
  transform: scaleY(1.5);
}

Transitions

is a shorthand property for:

**Syntax

transition: property duration timing-function delay initial inherit;
Value Description
transition-property Specifies the name of the CSS property the transition effect is for
transition-duration Specifies how many seconds or milliseconds the transition effect takes to complete
transition-timing-function Specifies the speed curve of the transition effect
transition-delay Defines when the transition effect will start
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

Animations

allows animation of HTML elements without using JavaScript or Flash!