Botões flutuantes
4 participantes
Fórum dos Fóruns :: Ajuda e atendimento ao utilizador :: Questões sobre a aparência do fórum :: Questões resolvidas sobre a aparência do fórum
Página 1 de 1 • Compartilhe
Botões flutuantes
Detalhes da questão
Endereço do fórum: https://testesf.forumeiros.com/
Versão do fórum: AwesomeBB
Descrição
Suporte, boa tarde!
Eu gostaria de implementar dois botões flutuantes no meu fórum um de atualizar a página e ir ao topo da página.
Segue exemplo e link do fórum:
http://prnt.sc/10mm47k
https://coregot.forumeiros.com/
Re: Botões flutuantes
Olá, @Ph1liphe !
Garanta que seu overall_footer_begin seja o normal da versão de seu fórum.
Primeiro, acesse seu overall_header e procure por <link href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css" rel="stylesheet"/> e em baixo adicione:
Logo após, acesse seu overall_footer_begin e em baixo de:
Adicione <a href="#top" id="fa-footer-back-to-top" title="Voltar ao topo" class="show"><i class="fas fa-angle-up" style="font-size: 16px;"></i><a href="/" id="fa-footer-reload" c title="Carregar a página" class="show" onclick="window.location.reload()"><i class="fas fa-undo-alt" style="font-size: 16px;"></i></a> e logo após acesse sua folha de estilo CSS:
Garanta que seu overall_footer_begin seja o normal da versão de seu fórum.
Primeiro, acesse seu overall_header e procure por <link href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css" rel="stylesheet"/> e em baixo adicione:
- Código:
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"/>
Logo após, acesse seu overall_footer_begin e em baixo de:
- Código:
<div class="statistics">
<div class="wrap">
<div class="statistics-item">
{TOTAL_POSTS}
</div>
<div class="statistics-item">
{TOTAL_USERS}
</div>
<div class="statistics-item">
{NEWEST_USER}
</div>
</div>
</div>
Adicione <a href="#top" id="fa-footer-back-to-top" title="Voltar ao topo" class="show"><i class="fas fa-angle-up" style="font-size: 16px;"></i><a href="/" id="fa-footer-reload" c title="Carregar a página" class="show" onclick="window.location.reload()"><i class="fas fa-undo-alt" style="font-size: 16px;"></i></a> e logo após acesse sua folha de estilo CSS:
- Código:
#fa-footer-back-to-top {
background-color: #000;
border-radius: 7px;
bottom: 30px;
box-shadow: 0 2px 5px rgba(0, 0, 0, .1), inset 0 0 1px 1px rgba(0, 0, 0, .1);
display: flex;
justify-content: center;
align-items: center;
height: 50px;
opacity: 0;
position: fixed;
left: 10px;
text-align: center;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
transition: background-color .3s, opacity .5s, visibility .5s;
visibility: hidden;
width: 50px;
z-index: 997;
}
#fa-footer-back-to-top:hover {
background-color: #668690;
cursor: pointer
}
#fa-footer-back-to-top:active {
background-color: #6eb8eb
}
#fa-footer-back-to-top.show {
opacity: 1;
visibility: visible
}
#fa-footer-reload {
background-color: #000;
border-radius: 7px;
bottom: 30px;
box-shadow: 0 2px 5px rgba(0, 0, 0, .1), inset 0 0 1px 1px rgba(0, 0, 0, .1);
display: inline-block;
height: 50px;
opacity: 0;
position: fixed;
padding-top: 15px;
left: 10px;
top: 450px;
text-align: center;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
transition: background-color .3s, opacity .5s, visibility .5s;
visibility: hidden;
width: 50px;
z-index: 999
}
#fa-footer-reload:hover {
background-color: #668690;
cursor: pointer
}
#fa-footer-reload:active {
background-color: #6eb8eb
}
#fa-footer-reload.show {
opacity: 1;
visibility: visible
}
Re: Botões flutuantes
@-Xerox-, funcionou!
Teria como deixar os ícones na cor branca?
http://prnt.sc/10o32dt
E diminuir o espaçamento entre elas?
Teria como deixar os ícones na cor branca?
http://prnt.sc/10o32dt
E diminuir o espaçamento entre elas?
Re: Botões flutuantes
Olá @Ph1liphe
Modifica os códigos dos botões para esse:
Atenciosamente, Wusthy
Modifica os códigos dos botões para esse:
- Código:
<a href="#top" id="fa-footer-back-to-top" title="Voltar ao topo" class="show">
<i class="fas fa-angle-up" style="font-size: 16px;color: white;"</i>
<a href="/" id="fa-footer-reload" c title="Carregar a página" class="show" onclick="window.location.reload()"><i class="fas fa-undo-alt" style="font-size: 16px;color: white;"></i>
</a>
Atenciosamente, Wusthy
Re: Botões flutuantes
Olá, @Ph1liphe !
Somente altere seu CSS para:
Somente altere seu CSS para:
- Código:
#fa-footer-back-to-top {
background-color: #f0f0f0;
border-radius: 7px;
bottom: 1100px;
box-shadow: 0 2px 5px rgba(0, 0, 0, .1), inset 0 0 1px 1px rgba(0, 0, 0, .1);
display: flex;
justify-content: center;
align-items: center;
height: 50px;
opacity: 0;
position: fixed;
left: 10px;
text-align: center;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
transition: background-color .3s, opacity .5s, visibility .5s;
visibility: hidden;
width: 50px;
}
#fa-footer-back-to-top:hover {
background-color: #668690;
cursor: pointer
}
#fa-footer-back-to-top:active {
background-color: #6eb8eb
}
#fa-footer-back-to-top.show {
opacity: 1;
visibility: visible
}
#fa-footer-reload {
background-color: #f0f0f0;
border-radius: 7px;
bottom: 30px;
box-shadow: 0 2px 5px rgba(0, 0, 0, .1), inset 0 0 1px 1px rgba(0, 0, 0, .1);
display: inline-block;
height: 50px;
opacity: 0;
position: fixed;
padding-top: 15px;
left: 10px;
top: 450px;
text-align: center;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
transition: background-color .3s, opacity .5s, visibility .5s;
visibility: hidden;
width: 50px;
z-index: 999
}
#fa-footer-reload:hover {
background-color: #668690;
cursor: pointer
}
#fa-footer-reload:active {
background-color: #6eb8eb
}
#fa-footer-reload.show {
opacity: 1;
visibility: visible
}
Re: Botões flutuantes
Funcionou perfeitamente, uma última coisa, teria como ele aparecer em todas as páginas?
Re: Botões flutuantes
Olá @Ph1liphe
Você diz ele sumir e aparecer em todas as páginas ou somente aparecer sem nenhum efeito?
Aguardando respostas,
Atenciosamente, Wushty
Você diz ele sumir e aparecer em todas as páginas ou somente aparecer sem nenhum efeito?
Aguardando respostas,
Atenciosamente, Wushty
Re: Botões flutuantes
Olá, @Wusthy!
Eu fiz um teste e vi que os botões só ficam na página inicial, teria como aparecer em todas as páginas do fórum com o mesmo efeito?
Eu fiz um teste e vi que os botões só ficam na página inicial, teria como aparecer em todas as páginas do fórum com o mesmo efeito?
Re: Botões flutuantes
Olá, @Wusthy !
Fiz um teste em meu fórum e ao invés de adicionar em overall_footer_begin, adicione o código:
a overall_footer_end.
Com tudo, deixe o CSS o mesmo caso ainda esteja funcional. Notei também uma falha em um dos códigos, ou seja, se não funcionar muito bem o CSS e caso o botão de ir para cima no seu fórum não esteja aparecendo, troque o CSS por:
Fiz um teste em meu fórum e ao invés de adicionar em overall_footer_begin, adicione o código:
- Código:
<a href="#top" id="fa-footer-back-to-top" title="Voltar ao topo" class="show"><i class="fas fa-angle-up" style="font-size: 16px;"></i><a href="/" id="fa-footer-reload" c title="Carregar a página" class="show" onclick="window.location.reload()"><i class="fas fa-undo-alt" style="font-size: 16px;"></i></a>
a overall_footer_end.
Com tudo, deixe o CSS o mesmo caso ainda esteja funcional. Notei também uma falha em um dos códigos, ou seja, se não funcionar muito bem o CSS e caso o botão de ir para cima no seu fórum não esteja aparecendo, troque o CSS por:
- Código:
#fa-footer-back-to-top {
background-color: #f0f0f0;
border-radius: 7px;
bottom: 210px;
box-shadow: 0 2px 5px rgba(0, 0, 0, .1), inset 0 0 1px 1px rgba(0, 0, 0, .1);
display: flex;
justify-content: center;
align-items: center;
height: 50px;
opacity: 0;
position: fixed;
left: 10px;
text-align: center;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
transition: background-color .3s, opacity .5s, visibility .5s;
visibility: hidden;
width: 50px;
}
#fa-footer-back-to-top:hover {
background-color: #668690;
cursor: pointer
}
#fa-footer-back-to-top:active {
background-color: #6eb8eb
}
#fa-footer-back-to-top.show {
opacity: 1;
visibility: visible
}
#fa-footer-reload {
background-color: #f0f0f0;
border-radius: 7px;
bottom: 30px;
box-shadow: 0 2px 5px rgba(0, 0, 0, .1), inset 0 0 1px 1px rgba(0, 0, 0, .1);
display: inline-block;
height: 50px;
opacity: 0;
position: fixed;
padding-top: 15px;
left: 10px;
top: 450px;
text-align: center;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
transition: background-color .3s, opacity .5s, visibility .5s;
visibility: hidden;
width: 50px;
z-index: 999
}
#fa-footer-reload:hover {
background-color: #668690;
cursor: pointer
}
#fa-footer-reload:active {
background-color: #6eb8eb
}
#fa-footer-reload.show {
opacity: 1;
visibility: visible
}
tikky- Admineiro
- Membro desde : 13/01/2017
Mensagens : 7962
Pontos : 9217
Tópicos semelhantes
» Ícones flutuantes
» Imagens flutuantes alinhadas
» Redes sociais flutuantes
» Inserir várias imagens flutuantes.
» Icones flutuantes na lateral do fórum
» Imagens flutuantes alinhadas
» Redes sociais flutuantes
» Inserir várias imagens flutuantes.
» Icones flutuantes na lateral do fórum
Fórum dos Fóruns :: Ajuda e atendimento ao utilizador :: Questões sobre a aparência do fórum :: Questões resolvidas sobre a aparência do fórum
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos