Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css how to make 2d animations at once

.scaler {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 120px;
    height: 120px;
    margin:-60px 0 0 -60px;
    animation: scale 4s infinite linear;    
}

.spinner {
    position: relative;
    top: 150px;
    animation: spin 2s infinite linear;
}


@keyframes spin { 
    100% { 
        transform: rotate(180deg);
    } 
}

@keyframes scale {
    100% {
         transform: scaleX(2) scaleY(2);
    }
}
Comment

css how to make 2d animations at once

animation: rotate 1s, spin 3s;
Comment

css how to make 2d animations at once

<div class="spinner">
<img class="scaler" src="http://makeameme.org/media/templates/120/grumpy_cat.jpg" alt="" width="120" height="120">
<div>
Comment

PREVIOUS NEXT
Code Example
Css :: jquery or selector 
Css :: align an entire second row center css grid 
Css :: test two css 
Css :: why grepper not always shows 
Css :: tabs css only 
Css :: line height negative css 
Css :: sphinx css templates 
Css :: css absolute z index less than 
Css :: css button remove border 
Css :: hoq to give paragraph color css 
Css :: PY Bisect key sort 
Css :: Add animated GIF when hovering an image 
Css :: scss @content 
Css :: centering icons in footer 
Css :: accessing folders in css 
Css :: shrouded 
Css :: felx-wrap css 
Css :: css to reduce margin of class container 
Css :: select all paragraph that contains image in css 
Css :: grape change status code 
Css :: check browser support for css value 
Css :: userchrome.css location windows 10 
Css :: responsive header with logo and menu css code 
Css :: angular set encapsulated body to full height 
Css :: transform translate css 
Css :: target only mozilla css 
Css :: css cap rows paragraph 
Css :: change image color css 
Css :: wordpress localhost css not working 
Css :: COMO ADC HOVER 
ADD CONTENT
Topic
Content
Source link
Name
9+3 =