陳沛鴻 Team fwt-shop-367791343 jquery.dropotron-1.0

From 2014hs.igem.org

/* Dropotron 1.0: A slick drop down menu plugin with a crappy name By nodethirtythree design | http://nodethirtythree.com/ | @nodethirtythree Dual licensed under the MIT or GPL license. ////////////////////////////////////////////////////////////////////////// MIT license:

Copyright (c) 2012 nodethirtythree design, http://nodethirtythree.com/

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ////////////////////////////////////////////////////////////////////////// GPL license:

Copyright (c) 2012 nodethirtythree design, http://nodethirtythree.com/

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. //////////////////////////////////////////////////////////////////////////

  • /

(function($) {

jQuery.fn.dropotron = function(options) { var settings = jQuery.extend({ selectorParent: jQuery(this) }, options); return jQuery.dropotron(settings); }

jQuery.dropotron = function(options) {

// Settings var settings = jQuery.extend({ selectorParent: null, // The parent jQuery object menuClass: 'dropotron', // Menu class (assigned to every UL) expandMode: 'hover', // Expansion mode ("hover" or "click") hoverDelay: 150, // Hover delay (in ms) hideDelay: 250, // Hide delay (in ms; 0 disables) openerClass: 'opener', // Opener class openerActiveClass: 'active', // Active opener class mode: 'slide', // Menu mode ("instant", "fade", "slide", "zoom") speed: 'fast', // Menu speed ("fast", "slow", or ms) easing: 'swing', // Easing mode ("swing", ???) alignment: 'left', // Alignment ("left", "center", "right") offsetX: 0, // Submenu offset X offsetY: 0, // Submenu offset Y baseZIndex: 1, // Base Z-Index IEOffsetX: 0, // IE Offset X IEOffsetY: 0 // IE Offset Y }, options);

// Variables var _top = settings.selectorParent, _menus = _top.find('ul'); var _window = jQuery('html'); var isLocked = false, hoverTimeoutId = null, hideTimeoutId = null;

// Main if (settings.hideDelay > 0) { _menus.add(_top.children('li').has('ul')) .mousemove(function(e) { window.clearTimeout(hideTimeoutId); hideTimeoutId = null; }) .mouseleave(function(e) { if (hideTimeoutId == null) hideTimeoutId = window.setTimeout(function() { _top.trigger('doCollapseAll'); }, settings.hideDelay); }); }

_top .bind('doCollapseAll', function() { _menus .trigger('doCollapse'); });

_menus.each(function() { var menu = jQuery(this), opener = menu.parent();

menu .hide() .addClass(settings.menuClass) .css('position', 'absolute') .bind('doExpand', function() {

if (menu.is(':visible')) return false;

window.clearTimeout(hideTimeoutId);

_menus.each(function() { var t = jQuery(this); if (!jQuery.contains(t.get(0), opener.get(0))) t.trigger('doCollapse'); });

var left, top, isTL = (menu.css('z-index') == 1), oo = opener.offset(), op = opener.position(), opp = opener.parent().position(), ow = opener.outerWidth(), mw = menu.outerWidth();

if (isTL) { top = oo.top + opener.outerHeight();

switch (settings.alignment) { case 'right': left = oo.left - mw + ow;

if (left < 0) left = oo.left;

break;

case 'center': left = oo.left - Math.floor((mw - ow) / 2);

if (left < 0) left = oo.left; else if (left + mw > _window.width()) left = oo.left - mw + ow;

break;

case 'left': default: left = oo.left;

if (left + mw > _window.width()) left = oo.left - mw + ow;

break; } } else { // Non-static position fix if (opener.css('position') == 'relative' || opener.css('position') == 'absolute') { top = settings.offsetY; left = (-1 * op.left); } else { top = op.top + settings.offsetY; left = 0; }

switch (settings.alignment) { case 'right': left += (-1 * opener.parent().outerWidth()) + settings.offsetX;

break;

case 'center': case 'left': default: left += opener.parent().outerWidth() + settings.offsetX;

break; } }

if (jQuery.browser.msie && jQuery.browser.version < 8) { left += settings.IEOffsetX; top += settings.IEOffsetY; }

menu .css('left', left + 'px') .css('top', top + 'px');

menu.css('opacity', '0.01').show();

// Kludge! var tmp = false;

// Non-static position fix if (opener.css('position') == 'relative' || opener.css('position') == 'absolute') left = (-1 * op.left); else left = 0;

if (menu.offset().left < 0) { left += opener.parent().outerWidth() - settings.offsetX; tmp = true; } else if (menu.offset().left + mw > _window.width()) { left += (-1 * opener.parent().outerWidth()) - settings.offsetX; tmp = true; }

if (tmp) menu.css('left', left + 'px');

menu.hide().css('opacity', '1');

switch (settings.mode) { case 'zoom':

isLocked = true;

opener.addClass(settings.openerActiveClass); menu.animate({ width: 'toggle', height: 'toggle' }, settings.speed, settings.easing, function() { isLocked = false; });

break;

case 'slide':

isLocked = true;

opener.addClass(settings.openerActiveClass); menu.animate({ height: 'toggle' }, settings.speed, settings.easing, function() { isLocked = false; });

break;

case 'fade':

isLocked = true;

if (isTL) { var tmp;

if (settings.speed == 'slow') tmp = 80; else if (settings.speed == 'fast') tmp = 40; else tmp = Math.floor(settings.speed / 2);

opener.fadeTo(tmp, 0.01, function() { opener.addClass(settings.openerActiveClass); opener.fadeTo(settings.speed, 1); menu.fadeIn(settings.speed, function() { isLocked = false; }); }); } else { opener.addClass(settings.openerActiveClass); opener.fadeTo(settings.speed, 1); menu.fadeIn(settings.speed, function() { isLocked = false; }); }

break;

case 'instant': default:

opener.addClass(settings.openerActiveClass); menu.show();

break; }

return false; }) .bind('doCollapse', function() {

if (!menu.is(':visible')) return false;

menu.hide(); opener.removeClass(settings.openerActiveClass); menu.find('.' + settings.openerActiveClass).removeClass(settings.openerActiveClass); menu.find('ul').hide();

return false;

}) .bind('doToggle', function(e) {

if (menu.is(':visible')) menu.trigger('doCollapse'); else menu.trigger('doExpand');

return false;

});

opener .addClass('opener') .css('cursor', 'pointer') .click(function(e) {

if (isLocked) return;

e.stopPropagation(); menu.trigger('doToggle');

});

if (settings.expandMode == 'hover') opener.hover(function(e) { if (isLocked) return; hoverTimeoutId = window.setTimeout(function() { menu.trigger('doExpand'); }, settings.hoverDelay); }, function (e) { window.clearTimeout(hoverTimeoutId); } ); });

_menus.find('a') .css('display', 'block') .click(function(e) {

if (isLocked) return;

_top.trigger('doCollapseAll');

e.stopPropagation();

});

_top.find('li') .css('white-space', 'nowrap') .each(function() { var t = jQuery(this), a = t.children('a'), ul = t.children('ul'); if (a.length > 0 && ul.length == 0) t.click(function(e) {

if (isLocked) return;

_top.trigger('doCollapseAll');

e.stopPropagation();

window.location.href = a.attr('href');

}); });

_top.children('li').each(function() {

var opener = jQuery(this), menu = opener.children('ul');

if (menu.length > 0) { menu .detach() .appendTo('body');

for(var z = settings.baseZIndex, i = 1, y = menu; y.length > 0; i++) { y.css('z-index', z++); y = y.find('> li > ul'); } }

});

_window .click(function() { if (!isLocked) _top.trigger('doCollapseAll'); }) .keypress(function(e) { if (!isLocked && e.keyCode == 27) { e.preventDefault(); _top.trigger('doCollapseAll'); } }); };

})(jQuery);