A Collection of Buttons With Cool Hover Effects | btns.css

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.

Related Posts

Floating-Whatsapp-Chat-Button

How to Add Floating Whatsapp Chat Button In HTML | venom-button

Venom Button is a very simple plugin for the jQuery floating WhatsApp button. Adds a floating button to your site that calls WhatsApp Click to Chat API. It will automatically start the WhatsApp…

Data-Table-Generator-Tabulator

Interactive Data Table Generator with JS/jQuery and JSON | Tabulator

Tabulator allows you to create interactive tables in seconds from any HTML Table, JavaScript array, AJAX data source, or JSON format data. Just include the library in your…

alert-confirm-prompt-attention-js

Simple Alert, Confirm, Prompt Popup Using Vanilla JavaScript Library | attention.js

JavaScript provides various built-in functionality to display popup messages for different purposes. Attention JS is a vanillaJS plugin used to create a custom alert, confirm, or Prompt…

Bootstrap-4-Toast-Notification-Plugin

Lightweight Bootstrap 4 Toast Notification Plugin | BS4 Advanced Toast

A lightweight Bootstrap 4 Toast Notification plugin integrated with JS/jQuery. bs4-toast.js is a JavaScript library that enhances the native Bootstrap toast component with icons, buttons, callbacks, and…

Audio-Visualizations-Wave

How to Create Audio Visualizations with JavaScript | Wave.js

Audio Visualizer Library – wave.js is a vanilla javascript audio visualization library that provides 20+ creative audio visualization effects to bring more engagement to your visitor. Contribute…

Responsive-FAQ-Accordion-Dropdown

Responsive FAQ Accordion Dropdown In HTML and CSS

How to create responsive accordion Expandable and Collapsible Frequently Asked Questions Elements. Accordion HTML, is an easy and seamless accordion FAQ component built with CSS and HTML…

Leave a Reply

Your email address will not be published. Required fields are marked *