简体   繁体   中英

how to do javascript/jQuery text effect david desandro

http://desandro.com/ if you scroll to the bottom of the page it says : DAVID DESANDRO MADE THIS.

On hover it has an awesome effect would anyone know how to accomplish this using http://designobvio.us/DoUs/directPro.html

eg PORTFOLIO

  <h2 id="introTopic">PORTFOLIO</h2>

Thank you guys so much!!

He's using Transitions (webkit/firefox? not sure about other support):

#site-footer .made-this a {
  -moz-transition: all 0.12s ease-out 0s; /* this is what you want */
  display: block;
  font-size: 42px;
  font-weight: 800;
  line-height: 0.9em;
  margin-bottom: 10px;
  position: relative;
  text-transform: uppercase;
}

He's also got a fantastic set of products.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM