mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-16 22:40:01 +08:00
33 lines
842 B
TypeScript
33 lines
842 B
TypeScript
/// <reference path="../jquery/jquery.d.ts" />
|
|
/// <reference path="foundation.d.ts" />
|
|
|
|
function test_orbit() {
|
|
$("#featured").orbit();
|
|
$('#featured').orbit({
|
|
animation: 'fade',
|
|
animationSpeed: 800,
|
|
timer: true,
|
|
resetTimerOnClick: false,
|
|
advanceSpeed: 4000,
|
|
pauseOnHover: false,
|
|
startClockOnMouseOut: false,
|
|
startClockOnMouseOutAfter: 1000,
|
|
directionalNav: true,
|
|
captions: true,
|
|
captionAnimation: 'fade',
|
|
captionAnimationSpeed: 800,
|
|
bullets: false,
|
|
bulletThumbs: false,
|
|
bulletThumbLocation: '',
|
|
afterSlideChange: function () { },
|
|
fluid: true
|
|
});
|
|
}
|
|
|
|
function test_fluid() {
|
|
$("#myModal").reveal();
|
|
}
|
|
|
|
function test_joyride() {
|
|
$("#chooseID").joyride();
|
|
} |