CSS transition and animate or transform with multiple properties

Transition:

The transition attribute can be used to create simple animations on a web page, you can use it to make the browser fade between two states and more. You have to specify the properties you'd lie to animate or you can specify 'all' which will tell it to just animate every property change. An example usage can be seen below, note that you need to place a comma between the properties that you want to transition/animate and also the need to specify a time for the transition, this can be integer or decimal:

-moz-transition: transform 1s, opacity 1s;
-o-transition: transform 1s, opacity 1s;
-webkit-transition: transform 1s, opacity 1s;
transition: transform 1s, opacity 1s;

You don't have to specify the -o-, -webkit- and -moz- properties but it does provide limited backward support for older browsers.

See w3schools for more on transitions.

Transform:

Transform works just like the transition attribute, the example seen below moves the element down 6px and rotates the element to a 45 degree angle, note that unlike the transition property, you do not need to place a comma between different transforms.

-moz-transform: translate(0, 6px) rotate(45deg);
-ms-transform: translate(0, 6px) rotate(45deg);
-o-transform: translate(0, 6px) rotate(45deg);
-webkit-transform: translate(0, 6px) rotate(45deg);
transform: translate(0, 6px) rotate(45deg);

Again, you don't have to specify the -o-, -webkit- and -moz- properties but it does provide limited backward support for older browsers.

See w3schools for more on transforms.


Published at

Tags: CSS3

Luke Alderton

Comments

Share with
Tags
Latest Comments
By Mark Gentry on Windows Server 2019 - Change product key does nothing
20 Aug 2021, 03:30 AM
By Cathy on In-Place Upgrade for a Windows Server domain controller
31 Jul 2021, 18:28 PM
By Mr. Greymatter on Raspberry Pi - Running Java app on Raspbian
16 Feb 2021, 07:35 AM
By Mikko Seittenranta on Xamarin Forms multiple instances of same app open
16 Feb 2021, 04:34 AM
By Andrew on Auto/Custom height on Xamarin Forms WebView for Android and iOS
22 Jan 2021, 22:15 PM
By Nick on Raspberry Pi - Running Java app on Raspbian
14 Oct 2020, 19:37 PM
By Ivan on Fixed: Value cannot be null Parameter Name: source
15 Sep 2020, 19:47 PM
By Anand on Raspberry Pi - Bluetooth using Bluecove on Raspbian
7 Sep 2020, 16:53 PM
Categories
App Development
Event
Game Development
Mapping
Modelling
Programming
Review
Robotics
Tutorial
Web Development