Skip to content

Instantly share code, notes, and snippets.

@ccbikai
Created June 18, 2013 03:24
Show Gist options
  • Save ccbikai/5802479 to your computer and use it in GitHub Desktop.
Save ccbikai/5802479 to your computer and use it in GitHub Desktop.
背景图片切换
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