Campo dos emblemas
4 participantes
Fórum dos Fóruns :: Ajuda e atendimento ao utilizador :: Questões sobre códigos :: Questões resolvidas sobre códigos Javascript e jQuery
Página 1 de 1
Campo dos emblemas
Detalhes da questão
Endereço do fórum: http://nwdgames.forumbrasil.net
Versão do fórum: ModernBB
Descrição
Olá pessoal, meu campo de emblemas só ficam com 1, mas eu gostaria que fosse possível adicionar + de 1 emblema em cada perfil, então estou usando este código:
- Código:
(function ($, css) {
'use strict';
$(function () {
$('.post_field').each(function () {
var $this = $(this);
var _text = $this.text();
if (!/emblemas/gi.test(_text)) {
return;
}
$this.addClass('perfil-emblemas');
$this
.find('img')
.each(function () {
var $this = $(this);
$this.attr('title', $this.next('strong').text());
$this.tooltipster();
})
;
});
$('<style>', { 'text': css.join('\n') }).appendTo('head');
});
}(jQuery, [
'.perfil-emblemas {',
' font-size: 0;',
' text-align: center;',
' margin: 10px 0;',
'}',
'',
'.perfil-emblemas * {',
' transition: none !important;',
'}',
'',
'.perfil-emblemas::before {',
' content: "Emblemas";',
' display: block;',
' font-size: 13px;',
' margin-bottom: 6px;',
' font-weight: 500;',
'}',
'',
'.perfil-emblemas img {',
' display: inline-block;',
' margin-right: 6px;',
' border: solid 1px #ddd;',
' padding: 3px;',
' box-shadow: inset 0 0 0 2px #ddd;',
'}'
]));
Porém não fica como eu quero, eu queria que ficasse assim:
https://i.imgur.com/XqsuSVH.png
Como fica:
http://prntscr.com/jzmyd3
Re: Campo dos emblemas
Olá @Punisher,
Mude para:
- pedxz
Mude para:
- Código:
(function ($, css) {
'use strict';
$(function () {
$('.post_field').each(function () {
var $this = $(this);
var _text = $this.text();
if (!/emblemas/gi.test(_text)) {
return;
}
$this.addClass('perfil-emblemas');
$this
.find('img')
.each(function () {
var $this = $(this);
$this.attr('title', $this.next('strong').text());
$this.tooltipster();
})
;
});
$('<style>', { 'text': css.join('\n') }).appendTo('head');
});
}(jQuery, [
'.perfil-emblemas {',
' font-size: 0;',
' text-align: left;',
' margin: 10px 0;',
'}',
'',
'.perfil-emblemas * {',
' transition: none !important;',
'}',
'',
'.perfil-emblemas::before {',
' content: "Emblemas";',
' display: block;',
' font-size: 13px;',
' margin-bottom: 6px;',
' font-weight: 500;',
'}',
'',
'.perfil-emblemas img {',
' display: inline-block;',
' text-align: left;',
' float: left!important;',
' margin-right: 0px;',
' border: solid 1px #ddd;',
' padding: 3px;',
' box-shadow: inset 0 0 0 2px #ddd;',
'}'
]));
- pedxz
tikky- Admineiro
- Membro desde : 13/01/2017
Mensagens : 7962
Pontos : 9217
Re: Campo dos emblemas
Olá amigo!
Remova os códigos passados acima, e tente utilizar o seguinte:
Até mais.
Remova os códigos passados acima, e tente utilizar o seguinte:
- Código:
(function ($, css) {
'use strict';
$(function () {
$('.post_field').each(function () {
var $this = $(this);
var _text = $this.text();
if (!/emblemas/gi.test(_text)) {
return;
}
$this.addClass('perfil-emblemas');
$this
.find('img')
.each(function () {
var $this = $(this);
$this.attr('title', $this.next('strong').text());
$this.tooltipster();
})
;
});
$('<style>', { 'text': css.join('\n') }).appendTo('head');
$('.perfil-emblemas').parents().prepend('<span><strong>Emblemas</strong></span>');
});
}(jQuery, [
'.perfil-emblemas {',
' font-size: 0;',
' text-align: center;',
' margin: 10px 0;',
' display: inline;',
'}',
'',
'.perfil-emblemas * {',
' transition: none !important;',
'}',
'',
'.perfil-emblemas::before {',
' content: "Emblemas";',
' display: block;',
' font-size: 13px;',
' margin-bottom: 6px;',
' font-weight: 500;',
'}',
'',
'.perfil-emblemas img {',
' height: 50px;',
' width: 50px;',
' padding: 5px;',
'}'
]));
Até mais.
Re: Campo dos emblemas
Oups!
Troque por este:
Troque por este:
- Código:
(function ($, css) {
'use strict';
$(function () {
$('.post_field').each(function () {
var $this = $(this);
var _text = $this.text();
if (!/emblemas/gi.test(_text)) {
return;
}
$this.addClass('perfil-emblemas');
$this
.find('img')
.each(function () {
var $this = $(this);
$this.attr('title', $this.next('strong').text());
$this.tooltipster();
})
;
});
$('<style>', { 'text': css.join('\n') }).appendTo('head');
$('.perfil-emblemas').parent().prepend('<span><strong>Emblemas</strong></span><br />');
$('.perfil-emblemas br').remove();
});
}(jQuery, [
'.perfil-emblemas {',
' font-size: 0;',
' text-align: center;',
' margin: 10px 0;',
' display: inline;',
'}',
'',
'.perfil-emblemas * {',
' transition: none !important;',
'}',
'',
'.perfil-emblemas img {',
' height: 50px;',
' width: 50px;',
' padding: 5px;',
'}'
]));
Re: Campo dos emblemas
Acho que agora vai @Punisher,
- Código:
(function ($, css) {
'use strict';
$(function () {
$('.post_field').each(function () {
var $this = $(this);
var _text = $this.text();
if (!/emblemas/gi.test(_text)) {
return;
}
$this.addClass('perfil-emblemas');
$this
.find('img')
.each(function () {
var $this = $(this);
$this.attr('title', $this.next('strong').text());
$this.tooltipster();
})
;
});
$('<style>', { 'text': css.join('\n') }).appendTo('head');
$('.perfil-emblemas').parent().prepend('<span><strong>Emblemas</strong></span><br>');
$('.perfil-emblemas br').remove();
});
}(jQuery, [
'.perfil-emblemas {',
' font-size: 0;',
' text-align: center;',
' margin: 10px 0;',
' display: inline;',
'}',
'',
'.perfil-emblemas * {',
' transition: none !important;',
'}',
'',
'.perfil-emblemas img {',
' height: 50px;',
' width: 50px;',
' padding: 5px;',
'}'
]));
Re: Campo dos emblemas
Claro!
- Código:
(function ($, css) {
'use strict';
$(function () {
$('.post_field').each(function () {
var $this = $(this);
var _text = $this.text();
if (!/emblemas/gi.test(_text)) {
return;
}
$this.addClass('perfil-emblemas');
$this
.find('img')
.each(function () {
var $this = $(this);
$this.attr('title', $this.next('strong').text());
$this.tooltipster();
})
;
});
$('<style>', { 'text': css.join('\n') }).appendTo('head');
$('.perfil-emblemas').parent().prepend('<span style="color:black"><strong>Emblemas</strong></span><br>');
$('.perfil-emblemas br').remove();
});
}(jQuery, [
'.perfil-emblemas {',
' font-size: 0;',
' text-align: center;',
' margin: 10px 0;',
' display: inline;',
'}',
'',
'.perfil-emblemas * {',
' transition: none !important;',
'}',
'',
'.perfil-emblemas img {',
' height: 50px;',
' width: 50px;',
' padding: 5px;',
'}'
]));
Última edição por RafaelS. em 26.06.18 22:03, editado 1 vez(es) (Motivo da edição : Cor.)
Fórum dos Fóruns :: Ajuda e atendimento ao utilizador :: Questões sobre códigos :: Questões resolvidas sobre códigos Javascript e jQuery
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos