Assine Nosso Feed!

Receba Nossas Atualizações em Seu E-mail:

  • Receba Todos os Nossos Artigos Automaticamente em Seu E-mail
  • Tenha a Exclusividade de Receber Boletins do Nosso Blog
  • Inscrever-se no feed do Nosso Blog é Fácil, Rápido e Seguro
  • Ajude a fazer Nosso Blog Crescer!!!


  • 30 de dezembro de 2012

    Imagens com efeito hover ao passar o mouse

    Bom galera passei algumas semana sem postar novos artigos o motivo que queria começar o ano de 2013 satisfeito com o blog então mudei alguns detalhes do layout e logotipo e estou muito feliz com os resultados, e para me desculpar com vocês no artigo de hoje mostrarei um efeito muito legal na imagem ao passar o mouse sobre ela.sabendo usar adequandamente podemos criar anúcios de algum serviço.

               

    Vamos ao Tutorial:


    1º- Clique em Editar HTML e expandir modelos de widgets.
    2º - Aperte Ctrl+F e procure por  ]]></b:skin> e cole antes o código abaixo:

    .view {
        background-color:#FFFFFF;  /* fondo borde */ 
        border: 10px solid #FFFFFF;  /* color borde */ 
        box-shadow: 2px 3px 5px #696969;  /* sombra borde */
        cursor: default;
        float: left;
        height: 200px; /* alto de la imagen */
       margin: 10px;
        overflow: hidden;
        position: relative;
        text-align: center;
        width: 250px; /* ancho de la imagen */
    }
    .view .mask, .view .content {
        height: 200px; /* alto del contenido es el mismo que el de la imagen */
        left: 0;
        overflow: hidden;
        position: absolute;
        top: 0;
        width: 250px; /* ancho del contenido es el mismo que de la imagen */
    }
    .view img {
        display: block;
        position: relative;
    }
    .view h2 {
        background: none repeat scroll 0 0 rgba(0, 0, 0, 0.8);
        color: #FFFFFF;
        font-size: 17px;
        margin: 20px 0 0;
        padding: 10px;
        position: relative;
        text-align: center;
        text-transform: uppercase;
    }
    .view p {
        color: #FFFFFF;
        font-family: Georgia,serif;
        font-size: 12px;
        font-style: italic;
        padding: 10px 20px 20px;
        position: relative;
        text-align: center;
    }
    .view a.info {
        display: inline-block;
        padding: 7px 14px;
        text-decoration: none;
        text-transform: uppercase;
    }

    .view-third img {
       box-shadow: 0 0 1px #000000;
    -webkit-transition: all 0.2s ease-in;
       -moz-transition: all 0.2s ease-in;
       -o-transition: all 0.2s ease-in;
       -ms-transition: all 0.2s ease-in;
       transition: all 0.2s ease-in;
    }
    .view-third .mask {
       background-color: rgba(0,0,0,0.6);
       -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
       filter: alpha(opacity=0);
       opacity: 0;
       -webkit-transform: translate(460px, -100px) rotate(180deg);
       -moz-transform: translate(460px, -100px) rotate(180deg);
       -o-transform: translate(460px, -100px) rotate(180deg);
       -ms-transform: translate(460px, -100px) rotate(180deg);
       transform: translate(460px, -100px) rotate(180deg);
       -webkit-transition: all 0.2s 0.4s ease-in-out;
       -moz-transition: all 0.2s 0.4s ease-in-out;
       -o-transition: all 0.2s 0.4s ease-in-out;
       -ms-transition: all 0.2s 0.4s ease-in-out;
       transition: all 0.2s 0.4s ease-in-out;
    }
    .view-third h2 {
       -webkit-transform: translateY(-100px);
       -moz-transform: translateY(-100px);
       -o-transform: translateY(-100px);
       -ms-transform: translateY(-100px);
       transform: translateY(-100px);
       -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
       -o-transition: all 0.2s ease-in-out;
       -ms-transition: all 0.2s ease-in-out;
       transition: all 0.2s ease-in-out;
    }
    .view-third p {
       -webkit-transform: translateX(300px) rotate(90deg);
       -moz-transform: translateX(300px) rotate(90deg);
       -o-transform: translateX(300px) rotate(90deg);
       -ms-transform: translateX(300px) rotate(90deg);
       transform: translateX(300px) rotate(90deg);
       -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
       -o-transition: all 0.2s ease-in-out;
       -ms-transition: all 0.2s ease-in-out;
       transition: all 0.2s ease-in-out;
    }
    .view-third a.info {
     -webkit-transform: translateY(-200px);
       -moz-transform: translateY(-200px);
       -o-transform: translateY(-200px);
       -ms-transform: translateY(-200px);
       transform: translateY(-200px);
       -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
       -o-transition: all 0.2s ease-in-out;
       -ms-transition: all 0.2s ease-in-out;
       transition: all 0.2s ease-in-out;
    }
    .view-third:hover .mask {
      -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
       filter: alpha(opacity=100);
       opacity: 1;
       -webkit-transition-delay: 0s;
       -moz-transition-delay: 0s;
       -o-transition-delay: 0s;
       -ms-transition-delay: 0s;
       transition-delay: 0s;
       -webkit-transform: translate(0px, 0px);
       -moz-transform: translate(0px, 0px);
       -o-transform: translate(0px, 0px);
       -ms-transform: translate(0px, 0px);
       transform: translate(0px, 0px);
    }
    .view-third:hover h2 {
     background: none repeat scroll 0 0 #9C1813; /* Título */
      border-top: 1px solid #000;  /* color borde top título */
      border-bottom: 1px solid #000;  /* color borde bottom título */
      text-shadow: 0px 1px 1px #111; /* sombra título */
       -webkit-transform: translateY(0px);
       -moz-transform: translateY(0px);
       -o-transform: translateY(0px);
       -ms-transform: translateY(0px);
       transform: translateY(0px);
       -webkit-transition-delay: 0.5s;
       -moz-transition-delay: 0.5s;
       -o-transition-delay: 0.5s;
       -ms-transition-delay: 0.5s;
       transition-delay: 0.5s;
    }
    .view-third:hover p {
       -webkit-transform: translateX(0px) rotate(0deg);
       -moz-transform: translateX(0px) rotate(0deg);
       -o-transform: translateX(0px) rotate(0deg);
       -ms-transform: translateX(0px) rotate(0deg);
       transform: translateX(0px) rotate(0deg);
       -webkit-transition-delay: 0.4s;
       -moz-transition-delay: 0.4s;
       -o-transition-delay: 0.4s;
       -ms-transition-delay: 0.4s;
       transition-delay: 0.4s;
    }
    .view-third:hover a.info {
     background: none repeat scroll 0 0 #9C1813; /* color de fondo enlace leer más */
    border: 1px solid #000;  /* color borde enlace leer más */   
        color:#FFFFFF; /* color enlace leer más */
        text-shadow: 0px 1px 1px #111; /* sombra enlace leer más */
       -webkit-transform: translateY(0px);
       -moz-transform: translateY(0px);
       -o-transform: translateY(0px);
       -ms-transform: translateY(0px);
       transform: translateY(0px);
       -webkit-transition-delay: 0.3s;
       -moz-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
       -ms-transition-delay: 0.3s;
       transition-delay: 0.3s;
    }

    3° - E por último vá em layout >>  adicionar widget >> HTML/javaScript e cole o código abaixo

    <div class="view view-third"> <img src="http://link-da-imagem" /> <div class="mask"> <h2>Titulo do tema</h2> <p>Descrição</p> <a class="info" href="Link-do-artigo">Más Información</a> </div> </div>

    Configurações necessárias: 

    • Em vemelho você coloca o endereço da imagem  
    • Em preto temos o titulo do tema ( como pode ver na imagem usei o tema "CONTRATE NOS")
    • Em laranja a descrição por exemplo: (Aprenda a criar um blog de sucesso)
    • Em Azul troque pelo link do artigo ou site/blog que deseja
    Só não esqueça de deixar sua opinião

    0 comentários:

    Postar um comentário