-
Notifications
You must be signed in to change notification settings - Fork 449
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b693560
commit b9613d1
Showing
10 changed files
with
7,779 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,5 +41,5 @@ | |
"index.html", | ||
"gulp" | ||
], | ||
"version": "2.2.2" | ||
"version": "2.2.3" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
<!DOCTYPE html> | ||
<html lang="zh-CN"> | ||
<head> | ||
<meta charset="utf-8"/> | ||
<meta name="viewport" | ||
content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no"/> | ||
<title>iSlider loop</title> | ||
<link href="public/css/iSlider.css" rel="stylesheet"> | ||
<style> | ||
body { | ||
margin: 0; | ||
padding: 0; | ||
background: #333; | ||
overflow: hidden; | ||
} | ||
|
||
/*ul wrapper*/ | ||
#iSlider-wrapper { | ||
height: 100%; | ||
width: 100%; | ||
overflow: hidden; | ||
position: absolute; | ||
} | ||
|
||
#iSlider-wrapper ul { | ||
list-style: none; | ||
margin: 0; | ||
padding: 0; | ||
height: 100%; | ||
overflow: hidden; | ||
} | ||
|
||
#iSlider-wrapper li { | ||
position: absolute; | ||
margin: 0; | ||
padding: 0; | ||
height: 100%; | ||
overflow: hidden; | ||
display: -webkit-box; | ||
-webkit-box-pack: center; | ||
-webkit-box-align: center; | ||
list-style: none; | ||
} | ||
|
||
#iSlider-wrapper li img { | ||
max-width: 100%; | ||
max-height: 100%; | ||
} | ||
</style> | ||
|
||
</head> | ||
<body> | ||
<div id="iSlider-wrapper"></div> | ||
<div id="hidden-space" style="display:none"> | ||
<p style="font-size:3em;text-align: center;color:#04f512">A node in dom tree.</p> | ||
</div> | ||
<script type="text/javascript" src="public/js/iSlider.js"></script> | ||
<script type="text/javascript" src="public/js/iSlider.animate.js"></script> | ||
<script id="show-code"> | ||
var list = [ | ||
// picture | ||
{ | ||
content: './imgs/pic.jpg' | ||
}, | ||
{ | ||
content: './imgs/mob.png' | ||
}, | ||
{ | ||
content: './imgs/no-exsit.png' | ||
}, | ||
{ | ||
content: './imgs/no-exsit1.png' | ||
}, | ||
{ | ||
content: './imgs/no-exsit2.png' | ||
}, | ||
{ | ||
content: './imgs/no-exsit3.png' | ||
}, | ||
]; | ||
|
||
var S = new iSlider(document.getElementById('iSlider-wrapper'), list, { | ||
isAutoplay: 1, | ||
isLooping: 1, | ||
isOverspread: 1, | ||
animateTime: 800 | ||
}); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.