-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaddingcustomthemes.htm
More file actions
25 lines (23 loc) · 1.02 KB
/
Copy pathaddingcustomthemes.htm
File metadata and controls
25 lines (23 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.12/themes/base/jquery-ui.css" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js"></script>
<script type="text/javascript" src="js/themeswitcher.js"></script>
<script>
$(document).ready(function(){
$('#switcher').themeswitcher({
includedThemes: [
{ name: "Rocket", preview: 'previews/rocket.png', css: "http://cdn.wijmo.com/themes/rocket/jquery-wijmo.css" },
{ name: "Aristo", preview: 'previews/aristo.png', css: "http://cdn.wijmo.com/themes/aristo/jquery-wijmo.css" },
{ name: "Cobalt", preview: 'previews/cobalt.png', css: "http://cdn.wijmo.com/themes/cobalt/jquery-wijmo.css" }
]
});
});
</script>
</head>
<body style="font-size:62.5%;">
<div id="switcher"></div>
</body>
</html>