Monday, 20 February 2017

How to add animations on button through Css.


Animated Effects on Button



<style>
.button {
  padding: 16px 26px;
  font-size: 25px;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #fff;
  background-color: #744AFF;
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px #999;
}

.button:hover {background-color: #3e8e41}

.button:active {
  background-color: #00a2ff;
  box-shadow: 0 6px #000;
  transform: translateY(4px);
}
</style>

0 comments:

Post a Comment