Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is this possible to use it anti-clockwise? #38

Closed
tedwong opened this issue Nov 6, 2017 · 2 comments
Closed

Is this possible to use it anti-clockwise? #38

tedwong opened this issue Nov 6, 2017 · 2 comments

Comments

@tedwong
Copy link

tedwong commented Nov 6, 2017

As title, thanks.

@iamjayk
Copy link

iamjayk commented Nov 8, 2017

@tedwong

return a div element and do some css animations with it

set that div className="someExampleName"

control from css

.someExampleName {
animation: rotate 0.9s;                  // specify seconds for speed control
}

@keyframes rotate {
0% { transform: rotate(0deg) }                                             // Transform is an example to transform the 
50%{  transform: rotate(180deg) }                                       // The whole object but look into something 
100%{ transform: rotate(360deg) }                                      // similar for the inner element or the shape

// OR //

from { }
to { } 
}

@xrkffgg
Copy link
Member

xrkffgg commented Nov 16, 2020

direction: rtl

@xrkffgg xrkffgg closed this as completed Nov 16, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants