User Tools

Site Tools


css:button_animated_effect

This is an old revision of the document!


CSS - Button Animated Effect

<!DOCTYPE html
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.button {
  padding: 15px 25px;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #fff;
  background-color: #4CAF50;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px #999;
}
 
.button:hover {background-color: #3e8e41}
 
.button:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}
</style>
</head>
<body>
 
<h2>Animated Buttons - "Pressed Effect"</h2>
 
<button class="button">Click Me</button>
 
</body>
</html>

References

css/button_animated_effect.1589963732.txt.gz ยท Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki