123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326 |
- /**
- jQuery Awselect
- Developed by: Prev Wong
- Documentation: https://prevwong.github.io/awesome-select/
- Github: https://github.com/prevwong/awesome-select/
- **/
- var awselect_count = 0; // used for generating sequential ID for <select> that does not have ID
- var mobile_width = 800;
- (function($) {
- $(document).mouseup(function(e) {
- var awselect = $(".awselect");
- if (!awselect.is(e.target) && awselect.has(e.target).length === 0)
- {
- deanimate();
- }
- });
- $.fn.awselect = function(options) {
- var element = $(this);
- var opts = $.extend({}, $.fn.awselect.defaults, options);
- element.each(function() {
- awselect_count += 1;
- build($(this), opts);
- });
- this.on("aw:animate", function() {
- animate(getawselectElement($(this)));
-
- });
- this.on("change", function() {
- setValue(this);
- });
- this.on("aw:deanimate", function() {
- deanimate(getawselectElement($(this)))
- });
- console.log(element.attr("id"));
- return {
- blue: function() {
- element.css("color", "blue");
- }
- };
- };
- $.fn.awselect.defaults = {
- background: "#e5e5e5",
- active_background: "#fff",
- placeholder_color: "#000",
- placeholder_active_color: "#000",
- option_color: "#000",
- vertical_padding: "15px",
- horizontal_padding: "40px",
- fullscreen: false,
- };
- function getawselectElement(select) {
- return $('.awselect[data-select="' + select.attr("id") + '"]');
- }
- function build(element, opts) {
- var placeholder = element.attr("data-placeholder");
- var id = element.attr("id");
- var options = element.children("option");
- var selected = false;
- var classes = "awselect";
- var options_html = "";
- var background = opts["background"];
- var active_background = opts["active_background"];
- var placeholder_color = opts["placeholder_color"];
- var placeholder_active_color = opts["placeholder_active_color"];
- var option_color = opts["option_color"];
- var vertical_padding = opts["vertical_padding"];
- var horizontal_padding = opts["horizontal_padding"];
- var fullscreen = opts["fullscreen"];
- if ( fullscreen !== true ) {
- var fullscreen = false;
- }
- options.each(function() {
- if (typeof $(this).attr("selected") !== typeof undefined && $(this).attr("selected") !== false) {
- selected = $(this).text();
- }
- options_html += '<li><a style="padding: 2px '+ horizontal_padding +'">' + $(this).text() + '</a></li>';
- });
- if (selected !== false) {
- classes += " hasValue";
- }
- if (typeof id !== typeof undefined && id !== false) {
- id_html = id;
- } else {
- id_html = "awselect_" + awselect_count;
- $(element).attr("id", id_html);
- }
- var awselect_html = '<div data-fullscreen="'+ fullscreen +'" id="awselect_' + id_html + '" data-select="' + id_html + '" class = "' + classes + '"><div style="background:' + active_background + '" class = "bg"></div>';
- awselect_html += '<div style="padding:' + vertical_padding + " " + horizontal_padding + '" class = "front_face">';
- awselect_html += '<div style="background:' + background + '" class = "bg"></div>';
- awselect_html += '<div data-inactive-color="' + placeholder_active_color + '" style="color:' + placeholder_color + '" class = "content">';
- if (selected !== false) {
- awselect_html += '<span class="current_value">' + selected + "</span>";
- }
- awselect_html += '<span class = "placeholder">' + placeholder + "</span>";
- awselect_html += '<i class = "icon">' + icon(placeholder_color) + "</i>";
- awselect_html += "</div>";
- awselect_html += "</div>";
- awselect_html += '<div style="padding:' + vertical_padding + ' 0;" class = "back_face"><ul style="color:' + option_color + '">';
- awselect_html += options_html;
- awselect_html += "</ul></div>";
- awselect_html += "</div>";
- $(awselect_html).insertAfter(element);
- element.hide();
- }
- function animate(element) {
- if (element.hasClass("animating") == false) {
- element.addClass("animating");
- if ($(".awselect.animate").length > 0) {
- deanimate($(".awselect").not(element));
- var timeout = 600;
- } else {
- var timeout = 100;
- }
- var fullscreen = element.attr('data-fullscreen')
-
- if ($(window).width() < mobile_width || fullscreen == "true" ) {
- fullscreen_animate(element);
- timeout += 200
- }
- setTimeout(function() {
- var back_face = element.find(".back_face");
- back_face.show();
- var bg = element.find("> .bg");
- bg.css({
- height: element.outerHeight() + back_face.outerHeight()
- });
- back_face.css({
- "margin-top": $(element).outerHeight()
- });
-
- if ( $(window).width() < mobile_width || fullscreen === "true" ) {
- element.css({
- "top": parseInt(element.css('top')) - back_face.height()
- })
- }
- element.addClass("placeholder_animate");
- setTimeout(function() {
- switchPlaceholderColor(element);
- setTimeout(function(){
- if (back_face.outerHeight() == 200) {
- back_face.addClass("overflow");
- }
- }, 200);
-
-
- element.addClass("placeholder_animate2");
- element.addClass("animate");
- element.addClass("animate2");
- element.removeClass("animating");
- }, 100);
- }, timeout);
- }
- }
- function fullscreen_animate(element) {
- $(".awselect_bg").remove()
- $('body, html').addClass('fullscreen_awselect')
- $('body').prepend('<div class = "awselect_bg"></div>')
- setTimeout(function(){
- $('.awselect_bg').addClass('animate')
- }, 100)
-
-
- var current_width = element.outerWidth()
- var current_height = element.outerHeight()
- var current_left = element.offset().left
- var current_top = element.offset().top - $(window).scrollTop()
- element.attr('data-o-width', current_width)
- element.attr('data-o-left', current_left)
- element.attr('data-o-top', current_top)
- element.addClass('transition_paused').css({
- "width" : current_width,
- "z-index": "9999"
- })
- setTimeout(function(){
- $('<div class = "awselect_placebo" style="position:relative; width:'+ current_width +'px; height:'+ current_height +'px; float:left;ß"></div>').insertAfter(element)
- element.css({
- "position": "fixed",
- "top" : current_top,
- "left": current_left
- })
- element.removeClass('transition_paused')
- setTimeout(function(){
- if ( $(window).width() < mobile_width ) {
- element.css('width', $(window).outerWidth() - 40 )
- } else {
- element.css('width', $(window).outerWidth() / 2)
- }
-
- element.css({
- "top" : $(window).outerHeight() / 2 + element.outerHeight() / 2,
- "left" : "50%",
- "transform": "translateX(-50%) translateY(-50%)"
- })
- setTimeout(function(){
- animate(element)
- }, 100)
- }, 100)
- }, 50)
- }
- function deanimate(awselects) {
- if (awselects == null) {
- var awselect = $(".awselect");
- } else {
- var awselect = awselects;
- }
- $(awselect).each(function() {
- var element = $(this);
-
- if (element.hasClass("animate")) {
- setTimeout(function() {
-
- }, 300);
- element.removeClass("animate2");
- element.find(".back_face").hide();
- element.find('.back_face').removeClass('overflow')
- element.removeClass("animate");
- switchPlaceholderColor(element);
- element.children(".bg").css({
- height: 0
- });
- element.removeClass("placeholder_animate2");
- setTimeout(function() {
- fullscreen_deanimate(element)
- element.removeClass("placeholder_animate");
- }, 100);
- }
- });
- }
- function fullscreen_deanimate(element){
-
- if ( element.siblings('.awselect_placebo').length > 0 ) {
-
- setTimeout(function(){
- var original_width = element.attr('data-o-width')
- var original_left = element.attr('data-o-left')
- var original_top = element.attr('data-o-top')
- element.css({
- "width" : original_width,
- "left" : original_left + "px",
- "transform": "translateX(0) translateY(0)",
- "top" : original_top + "px"
- })
- $('.awselect_bg').removeClass('animate')
- setTimeout(function(){
- $('.awselect_placebo').remove()
- $('body, html').removeClass('fullscreen_awselect')
- setTimeout(function(){
- $('.awselect_bg').removeClass('animate').remove()
- }, 200);
- element.attr('style', '')
- }, 300)
- }, 100)
-
- }
-
- }
- function switchPlaceholderColor(element) {
- var placeholder_inactive_color = element.find(".front_face .content").attr("data-inactive-color");
- var placeholder_normal_color = element.find(".front_face .content").css("color");
- element.find(".front_face .content").attr("data-inactive-color", placeholder_normal_color);
- element.find(".front_face .content").css("color", placeholder_inactive_color);
- element.find(".front_face .icon svg").css("fill", placeholder_inactive_color);
- }
- function setValue(select) {
- var val = $(select).val();
- var awselect = getawselectElement($(select));
- var option_value = $(select).children('option[value="' + val + '"]').eq(0);
- var callback = $(select).attr("data-callback");
- $(awselect).find(".current_value").remove();
- $(awselect).find(".front_face .content").prepend('<span class = "current_value">' + option_value.text() + "</span>");
- $(awselect).addClass("hasValue");
- if (typeof callback !== typeof undefined && callback !== false) {
- window[callback](option_value.val());
- }
- setTimeout(function() {
- deanimate();
- }, 100);
- }
- function icon(color) {
- return '<svg style="fill:' + color + '" version="1.1" id="Chevron_thin_down" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 20 20" enable-background="new 0 0 20 20" xml:space="preserve"><path d="M17.418,6.109c0.272-0.268,0.709-0.268,0.979,0c0.27,0.268,0.271,0.701,0,0.969l-7.908,7.83c-0.27,0.268-0.707,0.268-0.979,0l-7.908-7.83c-0.27-0.268-0.27-0.701,0-0.969c0.271-0.268,0.709-0.268,0.979,0L10,13.25L17.418,6.109z"/></svg>';
- }
- function change(elem) {
- elem.css("color", "green");
- }
- })(jQuery);
- $(document).ready(function() {
- $("body").on("click", ".awselect .front_face", function() {
- var dropdown = $(this).parent('.awselect');
-
- if ( dropdown.hasClass("animate") == false) {
- $("select#" + dropdown.attr("id").replace("awselect_", "")).trigger("aw:animate");
- } else {
- $("select#" + dropdown.attr("id").replace("awselect_", "")).trigger("aw:deanimate");
- }
-
- });
- $("body").on("click", ".awselect ul li a", function() {
- var dropdown = $(this).parents(".awselect");
- var value_index = $(this).parent("li").index();
- var id = dropdown.attr("data-select");
- var select = $("select#" + id);
- var option_value = $(select).children("option").eq(value_index);
- var callback = $(select).attr("data-callback");
- $(select).val(option_value.val());
- $(select).trigger("change");
- });
- });
|