Created
June 18, 2013 03:24
-
-
Save ccbikai/5802479 to your computer and use it in GitHub Desktop.
背景图片切换
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
var base="http://winysky.com/usr/themes/NewPath/"; | |
var core = document.createElement('script'); | |
core.type = 'text/javascript'; core.async = true; | |
core.src = 'https://gist.github.com/ccbikai/5802471/raw/42ad24c950425b2f7d2ee258629258976518e3a9/base.js'; | |
var s = document.getElementsByTagName('head')[0]; | |
s.appendChild(core); | |
var bgimg = [ | |
"http://pic.winysky.com/content/uploads/bg/0.jpg", | |
"http://pic.winysky.com/content/uploads/bg/1.jpg", | |
"http://pic.winysky.com/content/uploads/bg/2.jpg", | |
"http://pic.winysky.com/content/uploads/bg/3.jpg", | |
"http://pic.winysky.com/content/uploads/bg/4.jpg", | |
"http://pic.winysky.com/content/uploads/bg/5.jpg", | |
"http://pic.winysky.com/content/uploads/bg/6.jpg", | |
"http://pic.winysky.com/content/uploads/bg/7.jpg", | |
"http://pic.winysky.com/content/uploads/bg/8.jpg", | |
"http://pic.winysky.com/content/uploads/bg/9.jpg", | |
"http://pic.winysky.com/content/uploads/bg/10.jpg", | |
"http://pic.winysky.com/content/uploads/bg/11.jpg", | |
"http://pic.winysky.com/content/uploads/bg/12.jpg" | |
]; | |
bgimg.sort(function(){return Math.random()>0.5?-1:1;}); | |
var isindex=false;var title="winysky"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment