Search
 
SCRIPT & CODE EXAMPLE
 

CSS

floating object animation css

.floating {   
    animation-name: floating; 
    animation-duration: 3s; 
    animation-iteration-count: infinite; 
    animation-timing-function: ease-in-out; 
    margin-left: 30px; 
    margin-top: 5px; 
    background: #7F00FF;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #E100FF, #7F00FF);  
    background: linear-gradient(to right, #E100FF, #7F00FF);
    color: white;
} 
  
@keyframes floating { 
    0% { transform: translate(0,  0px); } 
    50%  { transform: translate(0, 15px); } 
    100%   { transform: translate(0, -0px); }     
} 
Comment

PREVIOUS NEXT
Code Example
Css :: get postfix version 
Css :: boxshadow in css 
Css :: css transform duration 
Css :: bootstrap col no gaps 
Css :: sass compressed style 
Css :: how to get rid of button outline when clicked 
Css :: add shadows on an image css 
Css :: div background image 
Css :: Truncate two row CSS (white space nowrap 2 lines) 
Css :: text border css 
Css :: remove list bullet css 
Css :: vertical text css 
Css :: media max height css 
Css :: cursor: not-allowed is not working with pointe events none in css 
Css :: centralizar div verticalmente css 
Css :: make an anchor tag inactive 
Css :: responsive container css 
Css :: bootstrap 4 classes list with description pdf 
Css :: css url do not change color of visited links 
Css :: make mat card scrollable 
Css :: check if swap is working 
Css :: vertical-align table row 
Css :: table td remove unknown padding in td 
Css :: open sans css 
Css :: header center 
Css :: box shadow 
Css :: html input background color 
Css :: how to remove horizontal scrolling 
Css :: on hover chang only border color of a button css 
Css :: how to align items in css 
ADD CONTENT
Topic
Content
Source link
Name
8+3 =