script.js 551 B

1234567891011121314151617181920212223242526272829
  1. // (function($) {
  2. // $.fn.futr = function() {
  3. // console.log(this);
  4. // this.each(function(i, item){
  5. // var children = $(item).children();
  6. // var maxH = $(children[0]).height();
  7. // for (var i=0; i < children.length; i++) {
  8. // if($(children[i]).height() < maxH ) maxH = $(children[i]).height();
  9. // }
  10. // $(children).height(maxH + 'px');
  11. // return this;
  12. // });
  13. // }
  14. // })(jQuery);
  15. // $('.container1, .container2')
  16. // .hide()
  17. // .fadeIn(1000)
  18. // .futr();
  19. $(function() {
  20. $('#gallary').gallery({
  21. current: 5
  22. });
  23. });