Показать сообщение отдельно
  #1 (permalink)  
Старый 11.04.2019, 23:01
Аспирант
Отправить личное сообщение для Alessio18911 Посмотреть профиль Найти все сообщения от Alessio18911
 
Регистрация: 18.06.2017
Сообщений: 87

Не удаётся подключить плагин JQ
Привет всем! Пытаюсь подключить плагин jq easing, чтобы модифицировать функцию slideToggle. Сделал, как указано на странице. Но сыплет ошибки. Подскажите, что не так. Вот подключение:
http://skrinshoter.ru/s/110419/ejxLff77
Сам скрипт:
$(function(){
	$('.ask').on('click', function(){
		if($(this).next().css('display') === 'block') {
			return;
		}

		$('.answer').slideUp(500);
		$(this).next().slideDown({
			duration: 500,
			easing: 'bouncein'
		});
	});
});

Вот сам плагин:
/*
 * jQuery Easing Compatibility v1 - [url]http://gsgd.co.uk/sandbox/jquery.easing.php[/url]
 *
 * Adds compatibility for applications that use the pre 1.2 easing names
 *
 * Copyright (c) 2007 George Smith
 * Licensed under the MIT License:
 *   [url]http://www.opensource.org/licenses/mit-license.php[/url]
 */

jQuery.extend( jQuery.easing,
    {
        easeIn: function (x, t, b, c, d) {
            return jQuery.easing.easeInQuad(x, t, b, c, d);
        },
        easeOut: function (x, t, b, c, d) {
            return jQuery.easing.easeOutQuad(x, t, b, c, d);
        },
        easeInOut: function (x, t, b, c, d) {
            return jQuery.easing.easeInOutQuad(x, t, b, c, d);
        },
        expoin: function(x, t, b, c, d) {
            return jQuery.easing.easeInExpo(x, t, b, c, d);
        },
        expoout: function(x, t, b, c, d) {
            return jQuery.easing.easeOutExpo(x, t, b, c, d);
        },
        expoinout: function(x, t, b, c, d) {
            return jQuery.easing.easeInOutExpo(x, t, b, c, d);
        },
        bouncein: function(x, t, b, c, d) {
            return jQuery.easing.easeInBounce(x, t, b, c, d);
        },
        bounceout: function(x, t, b, c, d) {
            return jQuery.easing.easeOutBounce(x, t, b, c, d);
        },
        bounceinout: function(x, t, b, c, d) {
            return jQuery.easing.easeInOutBounce(x, t, b, c, d);
        },
        elasin: function(x, t, b, c, d) {
            return jQuery.easing.easeInElastic(x, t, b, c, d);
        },
        elasout: function(x, t, b, c, d) {
            return jQuery.easing.easeOutElastic(x, t, b, c, d);
        },
        elasinout: function(x, t, b, c, d) {
            return jQuery.easing.easeInOutElastic(x, t, b, c, d);
        },
        backin: function(x, t, b, c, d) {
            return jQuery.easing.easeInBack(x, t, b, c, d);
        },
        backout: function(x, t, b, c, d) {
            return jQuery.easing.easeOutBack(x, t, b, c, d);
        },
        backinout: function(x, t, b, c, d) {
            return jQuery.easing.easeInOutBack(x, t, b, c, d);
        }
    });

А вот ошибки:
http://skrinshoter.ru/s/110419/7gqtmz7i
Ответить с цитированием