Blade(2014-12-26 18:26:26)At one point, I tried to use animations with gradients...it didn't work, so I have a guide to using animations on your profile. Let's get started.
CSS3 is only partly supported by the 3DS, CSS3 Animations DO NOT work on 3DS, so use something else. Also, I have no idea why some gradients won't load on 3DS, sorry.
Term: Animatable
Animatable. This means if the CSS styling can be animated. This is important.
Rule: @keyframes
@keyframes is the code for the frames of the animation.
Example:
1 | @keyframes myAnimation{
2 | 0%{background-color: #000000;}
3 | 100%{background-color: #FFFFFF;}
4 | }
How to set up: Animation.
1 | [style].SomeDIV{
2 | -webkit-animation: mymove 5s infinite;
3 | animation: mymove 5s infinite;
4 | }[/style]
In all, that's the basics of CSS3 Animation, leave a comment if you have any questions, but, remember, I once used CSS quite often, but stopped, because of school, so I'm a bit rusty.
Anyways, good bye!
This post has been edited one or more times, the last time was: 2014-12-26 18:29:59
At one point, I tried to use animations with gradients...it didn't work, so I have a guide to using animations on your profile. Let's get started.
Term: Animatable
Animatable. This means if the CSS styling can be animated. This is important.
background-color
background-position
background-size
border
border-bottom
border-bottom-color
border-bottom-left-radius
border-bottom-right-radius
border-bottom-width
border-color
border-left
border-left-color
border-left-width
border-right
border-right-color
border-right-width
border-spacing
border-top
border-top-color
border-top-left-radius
border-top-right-radius
border-top-width
bottom
box-shadow
clip
color
column-count
column-gap
column-rule
column-rule-color
column-rule-width
column-width
columns
flex
flex-basis
flex-grow
flex-shrink
font
font-size
font-size-adjust
font-stretch
font-weight
height
left
letter-spacing
line-height
margin
margin-bottom
margin-left
margin-right
margin-top
max-height
max-width
min-height
min-width
opacity
order
outline
outline-color
outline-offset
outline-width
padding
padding-bottom
padding-left
padding-right
padding-top
perspective
perspective-origin
right
text-decoration-color
text-indent
text-shadow
top
transform
transform-origin
vertical-align
visibility
width
word-spacing
z-index
Rule: @keyframes
@keyframes is the code for the frames of the animation.
Example:
1 | @keyframes myAnimation{
2 | 0%{background-color: #000000;}
3 | 100%{background-color: #FFFFFF;}
4 | }
How to set up: @keyframes.
1 | [style]@keyframes myAnimation{
2 | 0%{background-color: #000000;}
3 | 100%{background-color: #FFFFFF;}
4 | }[/style]
How to set up: Animation.
1 | [style].SomeDIV{
2 | -webkit-animation: mymove 5s infinite;
3 | animation: mymove 5s infinite;
4 | }[/style]
In all, that's the basics of CSS3 Animation, leave a comment if you have any questions, but, remember, I once used CSS quite often, but stopped, because of school, so I'm a bit rusty.
Anyways, good bye!
2014-12-26 18:29:59