Jump to content
  • 0

Помогите переделать скрипт табов


Rudiarius
 Share

Question

Имеется скрипт вкладок - 

$.fn.tabs = function() {	var selector = this;		this.each(function() {		var obj = $(this); 				$(obj.attr('href')).hide();				obj.click(function() {			$(selector).removeClass('selected');						$(this).addClass('selected');						$($(this).attr('href')).fadeIn();						$(selector).not(this).each(function(i, element) {				$($(element).attr('href')).hide();			});						return false;		});	});	$(this).show();		$(this).first().click();};

Пример его работы здесь, суть его работы в назначении стилей блокам: display:none и display:block - наглядно

 

Необходимо сделать так, чтобы блокам добавлялся просто дополнительный class (например activ - если отобразить и noactiv - всем остальным), именно добавлялся - так как там уже прописаны классы, для каждого блока вкладки. 

Или же поменять принцип стилей с display:none на  visibility: hidden; и visibility: visible;  Это мне нужно для корректной работы/загрузки анимации на цсс... помогите решить проблему, готов оплатить!

 

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Ну так поменяйте .hide() и .show() на addClass('class-name') с нужными вам классами. Как-то так.

$.fn.tabs = function() {	var selector = this;		this.each(function() {		var obj = $(this); 				$(obj.attr('href')).addClass('inactive');				obj.click(function() {			$(selector).removeClass('selected');						$(this).addClass('selected');						$($(this).attr('href')).fadeIn();						$(selector).not(this).each(function(i, element) {				$($(element).attr('href')).addClass('inactive').removeClass('active');			});						return false;		});	});	$(this).addClass('active');		$(this).first().click();};
Edited by hypnocolor
Link to comment
Share on other sites

  • 0

 

Ну так поменяйте .hide() и .show() на addClass('class-name') с нужными вам классами. Как-то так.

$.fn.tabs = function() {	var selector = this;		this.each(function() {		var obj = $(this); 				$(obj.attr('href')).addClass('inactive');				obj.click(function() {			$(selector).removeClass('selected');						$(this).addClass('selected');						$($(this).attr('href')).fadeIn();						$(selector).not(this).each(function(i, element) {				$($(element).attr('href')).addClass('inactive').removeClass('active');			});						return false;		});	});	$(this).addClass('active');		$(this).first().click();};

 

Спасибо за ответ! Вот так $($(element).attr('href')).addClass('inactive').removeClass('active'); почему то не работало... переставил местами $($(element).attr('href')).removeClass('activ').addClass('noactiv'); Кидайте любые  номера в личку, для обещанных благодарностей! 

Edited by Rudiarius
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy