- 授权协议: MIT
- 开发语言: HTML/CSS
- 操作系统: 跨平台
- 软件首页: http://yaochuxia.github.io/hover/
- 软件文档: https://github.com/yaochuxia/hover/blob/master/README.md
- 官方下载: https://github.com/yaochuxia/hover/tree/master/build/css
软件介绍
hover
CSS3 的鼠标悬停效果和动画,这些可以非常轻松的被应用到按钮、LOGO 以及图片等元素。所有这些效果都是只需要单一的标签,必要的时候使用 before 和 after 伪元素。因为使用了 CSS3 过渡、转换和动画效果,因此只支持 Chrome、Firefox 和 Safari 等现代浏览器。
使用
在 gulp 中使用
var gulp = require('gulp');
var stylus = require('gulp-stylus');
var watch = require('gulp-watch');
var nib = require('nib');
var rename = require('gulp-rename');
var autoprefixer = require('gulp-autoprefixer');
var browserslist = ['Android 2.3', 'Android >= 4', 'Chrome >= 20', 'Firefox >= 24', 'Explorer >= 8', 'iOS >= 6', 'Opera >= 12', 'Safari >= 6'];
gulp.src('./style/hover.styl')
.pipe(stylus({
compress:true,
use: nib()
}))
.pipe(rename('hover.min.css'))//重命命
.pipe(gulp.dest('./build/css/'));//压缩到的文件夹常规使用方法
直接在页面中引用./build/css/hover.min.css
<link rel="stylesheet" href="./build/css/hover.min.css"> <a href="#" class="hvr_pulse_grow">Pulse Grow</a>
Introduction to Computation and Programming Using Python
John V. Guttag / The MIT Press / 2013-7 / USD 25.00
This book introduces students with little or no prior programming experience to the art of computational problem solving using Python and various Python libraries, including PyLab. It provides student......一起来看看 《Introduction to Computation and Programming Using Python》 这本书的介绍吧!
