html - Remove applied CSS transformation -


i have applied -webkit-transform:rotatey(180deg); flip image. applying -webkit-transform:rotatey(0deg); rotate original position. have other classes applied, when check in chrome inspect element can see rotatey(0) still there should removed.

how can remove animation element?

.transition {   -webkit-transform:rotatey(180deg);   transform:rotatey(180deg); }  .notransition {   -webkit-transform:rotatey(0deg);   transform:rotatey(0deg); } 

just this:

.transition {   -webkit-transform: rotatey(180deg);   transform: rotatey(180deg); }  .notransition {   -webkit-transform: none;   transform: none; } 

none seems default value


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -