Skip to content

Instantly share code, notes, and snippets.

@Waidoss
Last active November 13, 2016 20:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Waidoss/8cb467ad99e7f2ff4f9d7cbcf65ae0b1 to your computer and use it in GitHub Desktop.
Save Waidoss/8cb467ad99e7f2ff4f9d7cbcf65ae0b1 to your computer and use it in GitHub Desktop.
jQuery plugin start
// первоначальная структура любого плагина
(function($) {
$.fn.myParallax = function() {
return this.each(function() {
var ths = $(this);
});
} ;
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment