A simple animated navigation implemented in pure css3 code_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:55:06
Original
1347 people have browsed it

I have introduced many navigation menus to you before, and today I will share with you a simple animated navigation implemented in pure CSS3 code. When the mouse passes over it, the background color changes from a diamond to a rectangle. The renderings are as follows:

Online preview Source code download

Implemented code.

html code:

  <div align="center" style="background-color: #ee1d27; padding: 20px;">        <div class="contener_link">            <div class="link_txt">                MENU ONE</div>        </div>        <div class="contener_link">            <div class="link_txt">                MENU TWO</div>        </div>        <div class="contener_link">            <div class="link_txt">                MENU THREE</div>        </div>    </div>
Copy after login

css3 code:

   .contener_link{  text-align: center;  position: relative;  width: 170px;  height: 50px;  cursor: pointer;  display: inline-block;}.contener_link .link_txt{  font-family:'Roboto';  position: absolute;  width: 150px;  font-weight: 300;  text-decoration: none;  font-size:22px;  padding: 10px;  color: #ffffff;}.contener_link:hover{  background-color: #f8b334;  -webkit-animation-duration:1s;  -webkit-animation-name: diaganim;  -moz-animation-duration:1s;  -moz-animation-name: diaganim;  -ms-animation-duration:1s;  -ms-animation-name: diaganim;  animation-duration:1s;  animation-name: diaganim;}@-webkit-keyframes diaganim {  0% {-webkit-transform: skewX(-80deg);}  100% {-webkit-transform: skewX(0deg);}}@-moz-keyframes diaganim {  0% {-moz-transform: skewX(-80deg);}  100% {-moz-transform: skewX(0deg);}}@-ms-keyframes diaganim {  0% {-ms-transform: skewX(-80deg);}  100% {-ms-transform: skewX(0deg);}}@keyframes diaganim {  0% {transform: skewX(-80deg);}  100% {transform: skewX(0deg);}}
Copy after login

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template