floating button

/* floating button */ .floating-btn { animation: bounce 2s ease-in-out forwards; animation-iteration-count: infinite; } @-webkit-keyframes bounce { 50% { -webkit-transform: scale(0.98) translateY(-10%); transform: scale(0.98) translateY(-10%); } 100% { -webkit-transform: translateY(0); transform: translateY(0); } } @keyframes bounce { 50% { -webkit-transform: scale(0.98) translateY(-10%); transform: scale(0.98) translateY(-10%); } 100% { -webkit-transform: translateY(0); transform: translateY(0); } }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.