This repository was archived by the owner on Sep 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbasic-neotabs.html
More file actions
72 lines (62 loc) · 3.08 KB
/
basic-neotabs.html
File metadata and controls
72 lines (62 loc) · 3.08 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<div class=tabs>
<div class=tabbody>
<h4>Tabbody Heading</h4>
<p>Lorem Ipsum</p>
</div>
<div class=tabbody>
<h4>Tabbody Heading 2</h4>
<p>Lorem Ipsum wakka wakka</p>
</div>
<div class=tabbody>
<h4>Tabbody Heading 3</h4>
<p>Lorem Ipsum wakka wakka</p>
</div>
<div class=tabbody>
<h4>Tabbody Heading 4</h4>
<p>Lorem Ipsum wakka wakka</p>
</div>
</div>
<script src=../components/jquery/jquery.js></script>
<script src=../src/jquery.neotabs.js></script>
<script>
$('.tabs').neoTabs(/*{
wrapperClass: 'content', // Classname of div to apply around the content
activeClass: 'active', // Classname to apply to active tab
tabHeadClass: 'tabhead', // Classname to apply to each generated tab
tabBodyClass: 'tabbody', // Classname which describes the body of a tab content
firstTabClass: 'first', // Classname to apply to the first tab of a tabs list
lastTabClass: 'last', // Classname to apply to the last tab of a tabs list
clearfixClass: 'group', // Class name for clearfix
tabsListClass: 'tabs-list', // Classname to apply to a tabs list
tabHeadElement: 'h4', // Selector which represents a tab
tabsPosition: 'top', // Tabs-list position 'top' || 'bottom'
cssClassAvailable: true, // Applying existing classes from tabHeadElement to tab
fx: 'show', // Collapsing effect
fxSpeed: 0, // Effect speed in milliseconds
autoAnchor: true, // Making tabs linkable or not
wrapInnerTabs: '', // Fragment for tab inner wrapping
dropdownTabLabel: '▾', // Dropdown tab label
dropdownTabClass: 'dropdown', // Classname to apply to tab which represents a dropdown
dropdownTabsListClass: 'tabs-list', // Classname to apply to tabs list within a dropdown
dropdownTabsClearfixClass: 'group' // Clearfix for dropdown
}*/);
</script>
</body>
</html>