2012-08-31 12:57:59 +00:00
|
|
|
<!doctype html>
|
2010-07-14 17:39:29 +00:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2010-09-10 01:35:00 +00:00
|
|
|
<meta charset="utf-8">
|
2010-09-10 02:33:09 +00:00
|
|
|
<title>jQuery UI Accordion - Open on hoverintent</title>
|
2013-12-02 18:36:12 +00:00
|
|
|
<link rel="stylesheet" href="../../themes/base/all.css">
|
2014-06-10 11:55:45 +00:00
|
|
|
<script src="../../external/jquery/jquery.js"></script>
|
2013-12-02 18:36:12 +00:00
|
|
|
<script src="../../ui/core.js"></script>
|
|
|
|
<script src="../../ui/widget.js"></script>
|
|
|
|
<script src="../../ui/accordion.js"></script>
|
2010-09-10 01:35:00 +00:00
|
|
|
<link rel="stylesheet" href="../demos.css">
|
|
|
|
<script>
|
|
|
|
$(function() {
|
2012-08-31 12:57:59 +00:00
|
|
|
$( "#accordion" ).accordion({
|
2010-09-10 01:35:00 +00:00
|
|
|
event: "click hoverintent"
|
|
|
|
});
|
|
|
|
});
|
2012-08-31 12:57:59 +00:00
|
|
|
|
2013-02-27 16:27:44 +00:00
|
|
|
/*
|
|
|
|
* hoverIntent | Copyright 2011 Brian Cherne
|
|
|
|
* http://cherne.net/brian/resources/jquery.hoverIntent.html
|
|
|
|
* modified by the jQuery UI team
|
|
|
|
*/
|
2010-07-14 17:39:29 +00:00
|
|
|
$.event.special.hoverintent = {
|
|
|
|
setup: function() {
|
2010-09-10 01:35:00 +00:00
|
|
|
$( this ).bind( "mouseover", jQuery.event.special.hoverintent.handler );
|
2010-07-14 17:39:29 +00:00
|
|
|
},
|
|
|
|
teardown: function() {
|
2010-09-10 01:35:00 +00:00
|
|
|
$( this ).unbind( "mouseover", jQuery.event.special.hoverintent.handler );
|
2010-07-14 17:39:29 +00:00
|
|
|
},
|
2010-09-10 01:35:00 +00:00
|
|
|
handler: function( event ) {
|
2013-02-27 16:27:44 +00:00
|
|
|
var currentX, currentY, timeout,
|
2010-07-14 17:39:29 +00:00
|
|
|
args = arguments,
|
2010-09-10 01:35:00 +00:00
|
|
|
target = $( event.target ),
|
2013-02-27 16:27:44 +00:00
|
|
|
previousX = event.pageX,
|
|
|
|
previousY = event.pageY;
|
2012-08-31 12:57:59 +00:00
|
|
|
|
2010-09-10 01:35:00 +00:00
|
|
|
function track( event ) {
|
2013-02-27 16:27:44 +00:00
|
|
|
currentX = event.pageX;
|
|
|
|
currentY = event.pageY;
|
2010-07-14 17:39:29 +00:00
|
|
|
};
|
2013-02-27 16:27:44 +00:00
|
|
|
|
2010-07-14 17:39:29 +00:00
|
|
|
function clear() {
|
2010-09-10 01:35:00 +00:00
|
|
|
target
|
|
|
|
.unbind( "mousemove", track )
|
2013-02-27 16:27:44 +00:00
|
|
|
.unbind( "mouseout", clear );
|
2010-09-10 01:35:00 +00:00
|
|
|
clearTimeout( timeout );
|
2010-07-14 17:39:29 +00:00
|
|
|
}
|
2013-02-27 16:27:44 +00:00
|
|
|
|
2010-07-14 17:39:29 +00:00
|
|
|
function handler() {
|
2013-02-27 16:27:44 +00:00
|
|
|
var prop,
|
|
|
|
orig = event;
|
|
|
|
|
|
|
|
if ( ( Math.abs( previousX - currentX ) +
|
|
|
|
Math.abs( previousY - currentY ) ) < 7 ) {
|
2010-07-14 17:39:29 +00:00
|
|
|
clear();
|
2013-02-27 16:27:44 +00:00
|
|
|
|
|
|
|
event = $.Event( "hoverintent" );
|
|
|
|
for ( prop in orig ) {
|
|
|
|
if ( !( prop in event ) ) {
|
|
|
|
event[ prop ] = orig[ prop ];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Prevent accessing the original event since the new event
|
2012-01-31 19:07:17 +00:00
|
|
|
// is fired asynchronously and the old event is no longer
|
|
|
|
// usable (#6028)
|
2013-02-27 16:27:44 +00:00
|
|
|
delete event.originalEvent;
|
|
|
|
|
|
|
|
target.trigger( event );
|
2010-07-14 17:39:29 +00:00
|
|
|
} else {
|
2013-02-27 16:27:44 +00:00
|
|
|
previousX = currentX;
|
|
|
|
previousY = currentY;
|
|
|
|
timeout = setTimeout( handler, 100 );
|
2010-07-14 17:39:29 +00:00
|
|
|
}
|
|
|
|
}
|
2013-02-27 16:27:44 +00:00
|
|
|
|
|
|
|
timeout = setTimeout( handler, 100 );
|
|
|
|
target.bind({
|
|
|
|
mousemove: track,
|
|
|
|
mouseout: clear
|
|
|
|
});
|
2010-07-14 17:39:29 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div id="accordion">
|
2012-02-27 02:37:44 +00:00
|
|
|
<h3>Section 1</h3>
|
2010-07-14 17:39:29 +00:00
|
|
|
<div>
|
|
|
|
<p>
|
|
|
|
Mauris mauris ante, blandit et, ultrices a, suscipit eget, quam. Integer
|
|
|
|
ut neque. Vivamus nisi metus, molestie vel, gravida in, condimentum sit
|
|
|
|
amet, nunc. Nam a nibh. Donec suscipit eros. Nam mi. Proin viverra leo ut
|
|
|
|
odio. Curabitur malesuada. Vestibulum a velit eu ante scelerisque vulputate.
|
|
|
|
</p>
|
|
|
|
</div>
|
2012-02-27 02:37:44 +00:00
|
|
|
<h3>Section 2</h3>
|
2010-07-14 17:39:29 +00:00
|
|
|
<div>
|
|
|
|
<p>
|
|
|
|
Sed non urna. Donec et ante. Phasellus eu ligula. Vestibulum sit amet
|
|
|
|
purus. Vivamus hendrerit, dolor at aliquet laoreet, mauris turpis porttitor
|
|
|
|
velit, faucibus interdum tellus libero ac justo. Vivamus non quam. In
|
|
|
|
suscipit faucibus urna.
|
|
|
|
</p>
|
|
|
|
</div>
|
2012-02-27 02:37:44 +00:00
|
|
|
<h3>Section 3</h3>
|
2010-07-14 17:39:29 +00:00
|
|
|
<div>
|
|
|
|
<p>
|
|
|
|
Nam enim risus, molestie et, porta ac, aliquam ac, risus. Quisque lobortis.
|
|
|
|
Phasellus pellentesque purus in massa. Aenean in pede. Phasellus ac libero
|
|
|
|
ac tellus pellentesque semper. Sed ac felis. Sed commodo, magna quis
|
|
|
|
lacinia ornare, quam ante aliquam nisi, eu iaculis leo purus venenatis dui.
|
|
|
|
</p>
|
|
|
|
<ul>
|
|
|
|
<li>List item one</li>
|
|
|
|
<li>List item two</li>
|
|
|
|
<li>List item three</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2012-02-27 02:37:44 +00:00
|
|
|
<h3>Section 4</h3>
|
2010-07-14 17:39:29 +00:00
|
|
|
<div>
|
|
|
|
<p>
|
|
|
|
Cras dictum. Pellentesque habitant morbi tristique senectus et netus
|
|
|
|
et malesuada fames ac turpis egestas. Vestibulum ante ipsum primis in
|
|
|
|
faucibus orci luctus et ultrices posuere cubilia Curae; Aenean lacinia
|
|
|
|
mauris vel est.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Suspendisse eu nisl. Nullam ut libero. Integer dignissim consequat lectus.
|
|
|
|
Class aptent taciti sociosqu ad litora torquent per conubia nostra, per
|
|
|
|
inceptos himenaeos.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="demo-description">
|
|
|
|
<p>
|
|
|
|
Click headers to expand/collapse content that is broken into logical sections, much like tabs.
|
|
|
|
Optionally, toggle sections open/closed on mouseover.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
The underlying HTML markup is a series of headers (H3 tags) and content divs so the content is
|
|
|
|
usable without JavaScript.
|
|
|
|
</p>
|
2012-09-10 15:33:46 +00:00
|
|
|
</div>
|
2010-07-14 17:39:29 +00:00
|
|
|
</body>
|
|
|
|
</html>
|