<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> /* 普通的標簽也是有hover事件的 */ .dv:hover { border:3px solid #ef8d0e; /*Y軸上表示上升*/ transform:translateY(-8px); } .dv { width:90px; height:86px; transition: all .25s ease-in; -moz-transition: all .25s ease-in; -webkit-transition: all .25s ease-in; border:3px solid #fff; margin:300px auto; background-color: pink; } </style> </head> <body> <div class="dv"> </div> </body> </html>
就是這個效果 ,這個應用在一些地方還挺常見的。