Skip to content

Commit

Permalink
rewrite using es6
Browse files Browse the repository at this point in the history
  • Loading branch information
progrape committed Mar 11, 2016
1 parent cbb120c commit 1a9c768
Show file tree
Hide file tree
Showing 20 changed files with 807 additions and 692 deletions.
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": [ "es2015-rollup" ]
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

扫描二维码

![demo](./dist/example/qrcode.png)
![demo](https://cloud.githubusercontent.com/assets/4652816/13709283/1052c01a-e7ee-11e5-959c-1095114739db.png)

[http://wechatui.github.io/swiper](http://wechatui.github.io/swiper)

Expand Down
73 changes: 37 additions & 36 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,39 @@
{
"name": "iswiper",
"description": "为移动端而生的滑动框架,无依赖,轻盈小巧,性能极致",
"version": "1.4.0",
"author": "wechat ui team",
"keywords": [
"iswiper",
"swiper",
"swipe",
"slider",
"mobile",
"framework"
],
"repository": {
"type": "git",
"url": "https://github.com/wechatui/swiper.git"
},
"homepage": "http://wechatui.github.io/swiper",
"scripts": [
"dist/swiper.js"
],
"main": [
"dist/swiper.js"
],
"ignore": [
"/.*",
"gulpfile.js",
"node_modules",
"package.json",
"**/.*",
"bower_components",
"test",
"tests"
],
"license": [
"MIT"
]
"name": "iswiper",
"description": "为移动端而生的滑动框架,无依赖,轻盈小巧,性能极致",
"version": "1.4.2",
"author": "wechat ui team",
"keywords": [
"wechat",
"iswiper",
"swiper",
"swipe",
"slider",
"mobile",
"framework"
],
"repository": {
"type": "git",
"url": "https://github.com/wechatui/swiper.git"
},
"homepage": "http://wechatui.github.io/swiper",
"scripts": [
"dist/swiper.js"
],
"main": [
"dist/swiper.js"
],
"ignore": [
"/.*",
"gulpfile.js",
"node_modules",
"package.json",
"**/.*",
"bower_components",
"test",
"tests"
],
"license": [
"MIT"
]
}
89 changes: 43 additions & 46 deletions dist/example/example.css
Original file line number Diff line number Diff line change
@@ -1,65 +1,62 @@
* {
margin: 0;
padding: 0;
margin: 0;
padding: 0;
}
html,
body {
height: 100%;
overflow: hidden;
height: 100%;
overflow: hidden;
}
.container{
height: 100%;
background-color: #efeff4;
.container {
height: 100%;
background-color: #efeff4;
}
.item{
color: #ffffff;
background-color: #000000;
.swiper {
background-color: #000000;
}
.title{
margin-top: 200px;
text-align: center;
.item {
color: #ffffff;
background-color: #000000;
}
.title {
margin-top: 200px;
text-align: center;
}

/**
* copy from animate.css
* https://daneden.github.io/animate.css
*/

.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}

100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}

@keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}

100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}

.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
2 changes: 1 addition & 1 deletion dist/example/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<title>无孔不入</title>
<link rel="stylesheet" href="../swiper.css"/>
<link rel="stylesheet" href="example.css"/>
<link rel="stylesheet" href="./example.css"/>
</head>
<body>
<div class="container">
Expand Down
Binary file removed dist/example/qrcode.png
Binary file not shown.
6 changes: 0 additions & 6 deletions dist/swiper.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
/*!
* iswiper - swiper.js
* @version v1.4.1
* @link https://github.com/weui/swiper.git
* @license MIT
*/
.swiper {
height: 100%;
overflow: hidden;
Expand Down
Loading

0 comments on commit 1a9c768

Please sign in to comment.