123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- !function ($) {
- "use strict";
- $.fn.switch = function () {
- this.each(function () {
- var $element = $(this)
- , $div
- , $switchLeft
- , $switchRight
- , $label
- , myClasses = ""
- , classes = $element.attr('class')
- , color;
- $.each(['switch-mini', 'switch-small', 'switch-large'], function (i, el) {
- if (classes.indexOf(el) >= 0)
- myClasses = el;
- });
- if ($element.data('on') !== undefined)
- color = "switch-" + $element.data('on');
- $switchLeft = $('<span></span>')
- .addClass("switch-left")
- .addClass(myClasses)
- .addClass(color)
- .text("ON");
- if ($element.data('off') !== undefined)
- color = "switch-" + $element.data('off');
- $switchRight = $('<span></span>')
- .addClass("switch-right")
- .addClass(myClasses)
- .addClass(color)
- .text("OFF");
- $label = $('<label></label>')
- .html(" ")
- .addClass(myClasses)
- .attr('for', $element.find('input').attr('id'));
- $div = $element.find('input').wrap($('<div></div>')).parent().addClass('switch-animate');
- $div.append($switchLeft);
- $div.append($label);
- $div.append($switchRight);
- $element.find('>div').addClass(
- $element.find('input').is(':checked') ? 'switch-on' : 'switch-off'
- );
- if ($element.find('input').is(':disabled'))
- $(this).addClass('deactivate');
- var changeStatus = function ($this) {
- $this.siblings('label').trigger('mousedown').trigger('mouseup').trigger('click');
- };
- $switchLeft.on('click', function (e) {
- changeStatus($(this));
- });
- $switchRight.on('click', function (e) {
- changeStatus($(this));
- });
- $element.find('input').on('change', function (e) {
- var $element = $(this).parent();
- e.preventDefault();
- e.stopImmediatePropagation();
- $element.css('left', '');
- if ($(this).is(':checked'))
- $element.removeClass('switch-off').addClass('switch-on');
- else $element.removeClass('switch-on').addClass('switch-off');
- $element.addClass("switch-animate");
- $element.parent().trigger('switch-change', {'el': $(this), 'value': $(this).is(':checked')})
- });
- $element.find('label').on('mousedown touchstart', function (e) {
- var $this = $(this)
- , moving = false;
- e.preventDefault();
- e.stopImmediatePropagation();
- $this.closest('div').removeClass('switch-animate');
- if ($this.closest('.switch').is('.deactivate'))
- $this.unbind('click');
- else {
- $this.on('mousemove touchmove', function (e) {
- var $element = $(this).closest('.switch')
- , relativeX = (e.pageX || e.originalEvent.targetTouches[0].pageX) - $element.offset().left
- , percent = (relativeX / $element.width()) * 100
- , left = 25
- , right = 75;
- moving = true;
- if (percent < left)
- percent = left;
- else if (percent > right)
- percent = right;
- $element.find('>div').css('left', (percent - right) + "%")
- });
- $this.on('click touchend', function (e) {
- var $this = $(this)
- , $target = $(e.target)
- , $myCheckBox = $target.siblings('input');
- e.stopImmediatePropagation();
- e.preventDefault();
- $this.unbind('mouseleave');
- if (moving)
- $myCheckBox.attr('checked', !(parseInt($this.parent().css('left')) < -25));
- else $myCheckBox.attr("checked", !$myCheckBox.is(":checked"));
- moving = false;
- $myCheckBox.trigger('change');
- });
- $this.on('mouseleave', function (e) {
- var $this = $(this)
- , $myCheckBox = $this.siblings('input');
- e.preventDefault();
- e.stopImmediatePropagation();
- $this.unbind('mouseleave');
- $this.trigger('mouseup');
- $myCheckBox.attr('checked', !(parseInt($this.parent().css('left')) < -25)).trigger('change');
- });
- $this.on('mouseup', function (e) {
- e.stopImmediatePropagation();
- e.preventDefault();
- $(this).unbind('mousemove');
- });
- }
- });
- }
- );
- };
- }($);
- $(function () {
- $('.switch').switch();
- });
|