Sistema de reputação
2 participantes
Fórum dos Fóruns :: Ajuda e atendimento ao utilizador :: Questões sobre códigos :: Questões resolvidas sobre HTML e BBCode
Página 1 de 1 • Compartilhe
Sistema de reputação
Qual é minha questão:
Olá gostaria de adicionar outros níveis no sistema de reputação
Eu quero assim
-10 - Horrível ( Com cor VERMELHO )
-5 - Ruim ( Com cor VERMELHO )
0 - Neutro
5 - Iniciante
15 - Bom
20 - Muito Bom
30 - Ótimo
50 - Excelente
70 - Profissional
Meu código é
Endereço do meu fórum:
http://dayzstandalonebrasil.com
Versão do fórum:
PUNBB
Olá gostaria de adicionar outros níveis no sistema de reputação
Eu quero assim
-10 - Horrível ( Com cor VERMELHO )
-5 - Ruim ( Com cor VERMELHO )
0 - Neutro
5 - Iniciante
15 - Bom
20 - Muito Bom
30 - Ótimo
50 - Excelente
70 - Profissional
Meu código é
- Código:
$(document).ready(function() {
$(".pun .post .user").each(function(){
$(this).html($(this).html().replace(/<span class="label/g,'<dd><div class="post_field"><span class="label'));
});
$('.user-info .post_field:contains("Reputação")').each(function() {
var rep = $(this).text().match(/\d+/g);
$(this).addClass('reputation');
$(this).append('<span class="title" style="font-weight:normal"></span>');
if(rep == 0) {
$(this).find('.title').text('Neutro');
$(this).addClass('zero');
}
else if(rep >= 1 && rep < 5) {
$(this).find('.title').text('Iniciante');
}
else if(rep >= 5 && rep < 10) {
$(this).find('.title').text('Membro ativo');
}
else if(rep >= 10) {
$(this).find('.title').text('Excelente');
}
});
});
Endereço do meu fórum:
http://dayzstandalonebrasil.com
Versão do fórum:
PUNBB
Última edição por Hygor-David em 22.03.14 3:12, editado 1 vez(es)
Re: Sistema de reputação
Olá,
Tente esse:
E adicione esse CSS:
Abraços.
Tente esse:
- Código:
$(document).ready(function() {
$(".pun .post .user").each(function(){
$(this).html($(this).html().replace(/<span class="label/g,'<dd><div class="post_field"><span class="label'));
});
$('.user-info .post_field:contains("Reputação")').each(function() {
var self, rep, title;
self = $(this);
rep = self.text().match(/\d+/g);
title = self.find('.title')
self.addClass('reputation');
self.append('<span class="title" style="font-weight:normal"></span>');
if (rep <= -10) {
title.text('Horrível');
self.addClass('negative');
} else if (rep <= -5) {
title.text('Ruim');
self.addClass('negative');
} else if (rep <= 0) {
title.text('Neutro');
self.addClass('zero');
} else if(rep <= 5) {
title.text('Iniciante');
} else if(rep <= 15) {
title.text('Bom');
} else if(rep <= 20) {
title.text('Muito Bom');
} else if(rep <= 30) {
title.text('Ótimo');
} else if(rep <= 50) {
title.text('Excelente');
} else if(rep > 70) {
title.text('Profissional');
}
});
});
E adicione esse CSS:
- Código:
.reputation.negative {
background: #f00 !important;
}
Abraços.
Re: Sistema de reputação
Olá amigo, ficou assim, fiz tudo o que disse.
Re: Sistema de reputação
Acho que foi erro meu...
Tente trocar o Javascript por esse:
Estava faltando um ponto e vírgula.
Abraços.
Tente trocar o Javascript por esse:
- Código:
$(document).ready(function() {
$(".pun .post .user").each(function(){
$(this).html($(this).html().replace(/<span class="label/g,'<dd><div class="post_field"><span class="label'));
});
$('.user-info .post_field:contains("Reputação")').each(function() {
var self, rep, title;
self = $(this);
rep = self.text().match(/\d+/g);
title = self.find('.title');
self.addClass('reputation');
self.append('<span class="title" style="font-weight:normal"></span>');
if (rep <= -10) {
title.text('Horrível');
self.addClass('negative');
} else if (rep <= -5) {
title.text('Ruim');
self.addClass('negative');
} else if (rep <= 0) {
title.text('Neutro');
self.addClass('zero');
} else if(rep <= 5) {
title.text('Iniciante');
} else if(rep <= 15) {
title.text('Bom');
} else if(rep <= 20) {
title.text('Muito Bom');
} else if(rep <= 30) {
title.text('Ótimo');
} else if(rep <= 50) {
title.text('Excelente');
} else if(rep > 70) {
title.text('Profissional');
}
});
});
Estava faltando um ponto e vírgula.
Abraços.
Re: Sistema de reputação
Agora fico assim.
Re: Sistema de reputação
Tente esse:
Abraços.
- Código:
$(function() {
$('.user-info .post_field:contains("Reputação")').each(function() {
var self, rep, title;
self = $(this);
rep = parseInt(self.text().replace(/[^\d]*/g, ''));
title = self.find('.title')
self.addClass('reputation');
self.append('<span class="title" style="font-weight:normal"></span>');
if (rep < -5) {
title.text('Horrível');
self.addClass('negative');
} else if (rep < 0) {
title.text('Ruim');
self.addClass('negative');
} else if (rep < 5) {
title.text('Neutro');
self.addClass('zero');
} else if(rep < 15) {
title.text('Iniciante');
} else if(rep < 20) {
title.text('Bom');
} else if(rep < 30) {
title.text('Muito Bom');
} else if(rep < 50) {
title.text('Ótimo');
} else if(rep < 70) {
title.text('Excelente');
} else if(rep >= 70) {
title.text('Profissional');
}
});
});
Abraços.
Re: Sistema de reputação
Fico assim novamente, https://i.imgur.com/PpGidn7.png
Re: Sistema de reputação
Errei novamente. :B
- Código:
$(function(){
$('.user-info .label:contains("Reputação")').each(function() {
var self, rep, text, title;
self = $(this);
text = self[0].nextSibling;
rep = parseInt(text.textContent.replace(/[^\d]*/g, ''));
self.addClass('reputation');
self.append('<span class="title" style="font-weight:normal">' + rep + '<br /></span>');
title = self.find('.title');
if (rep < -5) {
title.html(title.html() + 'Horrível');
self.addClass('negative');
} else if (rep < 0) {
title.html(title.html() + 'Ruim');
self.addClass('negative');
} else if (rep < 5) {
title.html(title.html() + 'Neutro');
self.addClass('zero');
} else if(rep < 15) {
title.html(title.html() + 'Iniciante');
} else if(rep < 20) {
title.html(title.html() + 'Bom');
} else if(rep < 30) {
title.html(title.html() + 'Muito Bom');
} else if(rep < 50) {
title.html(title.html() + 'Ótimo');
} else if(rep < 70) {
title.html(title.html() + 'Excelente');
} else if(rep >= 70) {
title.html(title.html() + 'Profissional');
}
text.parentNode.removeChild(text);
});
});
Última edição por Kyo Panda em 20.03.14 15:46, editado 2 vez(es)
Re: Sistema de reputação
Bom amigo não sei o que está acontecendo mais fico novamente do mesmo jeito da imagem anterior.
Re: Sistema de reputação
Verifiquei o JS do seu fórum e o mesmo não foi atualizado com esse último que postei. Teria como verificar?
Re: Sistema de reputação
Eu coloquei de novo. o último código que você posto
Re: Sistema de reputação
Agora sim. Mas ainda há um script bugando tudo. Que é este:
Procure ele em seus Javascript e elimine-o.
- Código:
$(document).ready(function(){$(".pun .post .user").each(function(){$(this).html($(this).html().replace(/<span class="label/g,'<dd><div class="post_field"><span class="label'))});$('.user-info .post_field:contains("Reputação")').each(function(){var rep=$(this).text().match(/\d+/g);$(this).addClass('reputation');$(this).append('<span class="title" style="font-weight:normal"></span>');if(rep==0){})});
Procure ele em seus Javascript e elimine-o.
Fórum dos Fóruns :: Ajuda e atendimento ao utilizador :: Questões sobre códigos :: Questões resolvidas sobre HTML e BBCode
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos