documentation and links about hover effect

0

I would like to know if there is any material or documentation to help me, since I need to create a :hover effect similar to that of this site here

NOTE: the :hover effect and the part of e-commerce where the photos of the clothes are located and the buy button appears

    
asked by anonymous 24.06.2016 / 21:15

1 answer

2

I copied the site and icone missing, this does not load googleapis is copyright, use FontAwesome ( link ) can help. flw

<html>
<link href="http://tympanus.net/Tutorials/CreativeCSS3AnimationMenus/css/style4.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script><linkhref="http://tympanus.net/Tutorials/CreativeCSS3AnimationMenus/css/demo.css" rel="stylesheet"/>
<link href='http://fonts.googleapis.com/css?family=Terminal+Dosis' rel='stylesheet' type='text/css' />
<body>
  <ul class="ca-menu">
    <li>
      <a href="#">
        <span class="ca-icon">F</span>
        <div class="ca-content">
          <h2 class="ca-main">Exceptional Service</h2>
          <h3 class="ca-sub">Personalized to your needs</h3>
        </div>
      </a>
    </li>
    <li>
      <a href="#">
        <span class="ca-icon">H</span>
        <div class="ca-content">
          <h2 class="ca-main">Creative Storytelling</h2>
          <h3 class="ca-sub">Advanced use of technology</h3>
        </div>
      </a>
    </li>
    <li>
      <a href="#">
        <span class="ca-icon">N</span>
        <div class="ca-content">
          <h2 class="ca-main">Infographical Education</h2>
          <h3 class="ca-sub">Understanding visually</h3>
        </div>
      </a>
    </li>
    <li>
      <a href="#">
        <span class="ca-icon">K</span>
        <div class="ca-content">
          <h2 class="ca-main">Sophisticated Team</h2>
          <h3 class="ca-sub">Professionals in action</h3>
        </div>
      </a>
    </li>
    <li>
      <a href="#">
        <span class="ca-icon">L</span>
        <div class="ca-content">
          <h2 class="ca-main">Unconditional Support</h2>
          <h3 class="ca-sub">24/7 for you needs</h3>
        </div>
      </a>
    </li>
  </ul>
</body></html>
    
24.06.2016 / 21:30