Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
janily committed Nov 1, 2016
1 parent 6d35eff commit e8c1e74
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# 本地预览目录不上传
_book
_book

# node_modules
node_modules
1 change: 1 addition & 0 deletions .publish
Submodule .publish added at c221a0
4 changes: 2 additions & 2 deletions GreenSockBasic/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# GreenSock简介

这一部分主要是介绍GreenSock的一个基本的使用方法
这部分主要是介绍GreenSock的基本使用方法

开始之前先来了解下GSAP动画平台四个插件的不同功能。如下图所示
先来了解下GSAP动画平台四个插件的不同功能

![](http://i3.tietuku.com/6f5c0e8054dc8d27.png)

Expand Down
7 changes: 7 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
var gulp = require('gulp');
var ghPages = require('gulp-gh-pages');

gulp.task('deploy', function() {
return gulp.src("_book/**/*.*")
.pipe(ghPages());
});

0 comments on commit e8c1e74

Please sign in to comment.