Hover.css
1.1、Hover.css简介

Hover.css是一个CSS3的动画库。

Hover.css官网:http://ianlunn.github.io/Hover

Hover.cssGitHub上的网址:https://github.com/IanLunn/Hover

1.2、引入Hover.css
1.2.1、通过下载到本地引入Hover.css

1、通过bower下载:

bower install hover --save

2、引入:

<link rel="stylesheet" href="/bower_components/hover.css/hover.min.css">
1.2.2、通过CDN引入Hover.css
<link rel="stylesheet" href="https://cdn.bootcss.com/hover.css/2.1.0/css/hover-min.css">
1.3、使用Hover.css

在要展示动画的元素上,使用hvr-grow类,示例:

<a href="#" class="btn btn-success hvr-grow">
    Add to Basket
</a>