btns is a button set that provides a set of cool scrolling effects for web buttons.
button hover effects css, creative button hover effects, pure css button hover effects, css hover transition effects, simple css button hover effects, simple button hover effects
Animated Neon Light Buttons Animation Effects In Pure CSS
How to make use of it:
1. Copy the styles of the buttons’ hover effects into src / styles.css.
.btn-slide-bottom { border: none; display: block; text-align: center; cursor: pointer; overflow: hidden; color: #fff !important; font-weight: 700; font-size: 15px; background-color: #333; padding: 17px 45px; transition: all .5s ease-in-out; } .btn-slide-bottom span { position: relative; z-index: 1; } .btn-slide-bottom:after { content: ""; position: absolute; left: 0; top: 0; height: 490%; width: 140%; -webkit-transition: all .5s ease-in-out; transition: all .5s ease-in-out; -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg); transform: translateX(-98%) translateY(-25%) rotate(45deg); } .btn-slide-bottom:hover:after { -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg); transform: translateX(-9%) translateY(-25%) rotate(45deg); } .btn-slide-bottom--orange:after{ background: #FEAE00; } .btn-slide-bottom--pink:after{ background: #FF6392; } .btn-slide-bottom--blue:after{ background: #3A86FF; } .btn-slide-bottom--red:after{ background: #EF233C; } .btn-slide-bottom--green:after{ background: #80ED99; } .btn-slide-bottom--yellow:after{ background:#3D348B; }
2. Paste the styles into the document and apply the corresponding CSS classes to the buttons.
<button class="btn btn-slide-bottom btn-slide-bottom--orange"> <span>Click me</span> </button> <button class="btn btn-slide-bottom btn-slide-bottom--pink"> <span>Click me</span> </button> <button class="btn btn-slide-bottom btn-slide-bottom--blue"> <span>Click me</span> </button> <button class="btn btn-slide-bottom btn-slide-bottom--red"> <span>Click me</span> </button> <button class="btn btn-slide-bottom btn-slide-bottom--green"> <span>Click me</span> </button> <button class="btn btn-slide-bottom btn-slide-bottom--yellow"> <span>Click me</span> </button>
A Collection Of Cool Button Hover Effects, btns Plugin/Github, hover.css cdn
See Demo And Download
Official Website(enjeck): Click Here
This superior jQuery/javascript plugin is developed by enjeck. For extra Advanced Usage, please go to the official website.