AccueilDernières imagesRechercherS'enregistrerConnexion

Forum de graphisme, codage et game design proposant des tutoriels, astuces, libres services et commandes dans les domaines de l'infographie amateur, de l'intégration web (HTML et CSS essentiellement) ainsi que dans la conception de RPG sur forum.


    Profil "moderne" avec effet hover

    Alumine
    Alumine
    FémininAge : 26Messages : 487

    Sam 8 Nov 2014 - 17:56

    Rappel du premier message :



    Profil "moderne" avec effet hover


    Voici un petit LS à la demande de Clarisse; l'avatar est de taille 200x320px et les infos apparaissent au hover. Il n'y a pas de place prévue pour une image de rang mais seulement pour un texte.
    Alors ça donne ça (images faites par Clarisse) (la deuxième image est au survol)
    profil - Profil "moderne" avec effet hover - Page 12 14130310 profil - Profil "moderne" avec effet hover - Page 12 14130311

    Template

    Pour commencer rendez-vous dans votre panneau d'admin > affichage > Templates > général et dans Viewtopic_body, c'est la partie de HTML qui concerne l'affichage des messages.
    Vers la ligne 139 si vous n'avez rien changé, trouvez ceci
    Code:
    <td class="{postrow.displayed.ROW_CLASS}"{postrow.displayed.THANK_BGCOLOR} valign="top" width="150">
     <span class="name"><a name="{postrow.displayed.U_POST_ID}" style="position: relative; top: -30px; width: 1px;" id="{postrow.displayed.U_POST_ID}"></a><strong>{postrow.displayed.POSTER_NAME}</strong></span><br />
     <span class="postdetails poster-profile">
     {postrow.displayed.POSTER_RANK}<br />
     {postrow.displayed.RANK_IMAGE}{postrow.displayed.POSTER_AVATAR}<br /><br />
     <!-- BEGIN profile_field -->
     {postrow.displayed.profile_field.LABEL} {postrow.displayed.profile_field.CONTENT}{postrow.displayed.profile_field.SEPARATOR}
     <!-- END profile_field -->
     {postrow.displayed.POSTER_RPG}
     </span><br />
     <img src="http://2img.net/i/fa/empty.gif" alt="" style="width:150px;height:1px" />
     </td>

    Et remplacez-le par ça :
    Code:
    <td class="{postrow.displayed.ROW_CLASS}"{postrow.displayed.THANK_BGCOLOR} valign="top" width="150">
                      <div class="profilmembre"><div class="pseudo"><span class="name"><a name="{postrow.displayed.U_POST_ID}" style="position: relative; top: -30px; width: 1px;" id="{postrow.displayed.U_POST_ID}"></a><strong>{postrow.displayed.POSTER_NAME}</strong></span><div class="flecheprofil"></div></div>
     <span class="postdetails poster-profile">
     {postrow.displayed.POSTER_AVATAR}
                                      <div class="rang">{postrow.displayed.POSTER_RANK}</div>
     <div class="infoprofil"><!-- BEGIN profile_field -->
                                      {postrow.displayed.profile_field.LABEL} <span class="infoprofilrep">{postrow.displayed.profile_field.CONTENT}</span>{postrow.displayed.profile_field.SEPARATOR}
                                      <!-- END profile_field --></div>
     {postrow.displayed.POSTER_RPG}
                        </span></div>
     </td>


    Ensuite, validez et n'oubliez pas de publier votre template (=

    CSS
    La suite se passe dans couleurs>feuille de style CSS !
    Ajoutez ceci
    Code:
    /*Profil et affichage de lavatar par Alu pour Never utopia */
    .profilmembre {
      border: 1px solid #a19388;
      position:relative;
      margin-right:10px;/*à adapter pour que la flèche noire ne morde pas le texte (augmenter)*/
      background-color:#ABABAB;
    }

    .pseudo{
          padding:4px 0;
          width:200px;
          background-color:#1C1C1C;
          position:relative;
          text-align:center;
          color:#949046;
          font:Josefin Slab, Georgia;
          text-transform:uppercase;
    }

    .pseudo .name a{font-size:24px; font-weight:300;color:#737373 !important;}

    .flecheprofil{
      width:0px;
      height:0px;
      border:8px solid transparent;
      border-left:25px solid #1C1C1C;
      position:absolute;
      top:10px;
      left:200px;
    }

    .rang {
      width:136px;
      height:19px;
      background-color: #1C1C1C;
      font: 10px Josefin Slab, Georgia;
      line-height:95%;
      text-transform: uppercase;
      color:#636363;
      margin:-15px auto 5px auto;
      padding:2px;
      text-align:center;  
      position:relative;
      z-index:2;
      -moz-box-shadow: 0px 0px 8px 0px #656565;
      -webkit-box-shadow: 0px 0px 8px 0px #656565;
      -o-box-shadow: 0px 0px 8px 0px #656565;
      box-shadow: 0px 0px 8px 0px #656565;
      filter:progid:DXImageTransform.Microsoft.Shadow(color=#656565, Direction=NaN, Strength=8);
    }
    .infoprofil{
      position:absolute;
      top:35px;
      left:0;
      background: rgba(0, 0, 0, 0.75);
      opacity:0;
      filter:alpha(opacity=0);
      height:320px;
      width:200px;
      text-align:center;
      font:13px sans-serif 500;
      text-transform:uppercase;
      color:#8A8A8A;
      -moz-transition: all 0.7s ease;
      -webkit-transition: all 0.7s ease;
      -o-transition: all 0.7s ease;
      transition: all 0.7s ease;
    }
    .infoprofil:hover{opacity:1; filter:alpha(opacity=100);}

    .infoprofil .label span {
      visibility:visible;
      text-decoration:underline;
      display:block;
      background-color:rgba(0, 0, 0, 0.65);
      color:#8A8A8A !important;
      padding:5px;
      margin: 5px 0 -5px 0;
    }
    .infoprofil .label{visibility:hidden;}
    .infoprofilrep {
      visibility:visible;
      display:block;
      background-color:rgba(0, 0, 0, 0.65);
      padding:3px;
      margin:-5px 0 -3px 0;
    }
    /*fin du profil ****************************************************/

    Puis validez, et c'est terminé ! Par contre il peut y avoir une petite modification à faire, pour que la petite flèche noire ne morde pas le texte du message, il faut éventuellement augmenter la marge de droite (margin-right) j'ai légendé l'endroit où le faire (=
    Voilà c'est tout ! Mettez un petit crédit à N-U s'il vous plaît ~

    Merci de laisser un message pour donner vos impressions, commentaires et/ou remerciements ^^
    Si vous avez des problèmes avec ce LS, venez poster ici.



    Alumine
    ass kicker
    ass kicker
    FémininAge : 29Messages : 80

    Mer 18 Mar 2015 - 19:20

    justement ce que je cherchais, merci ♥.



      see you again
      No matter where you are, whether you’re a quarter mile away, or half way around the world … you’ll always be with me. You’ll always be my brother.©️endlesslove
    Meylah
    Meylah
    FémininAge : 22Messages : 60

    Jeu 19 Mar 2015 - 18:58

    Merci !
    Dacina moe
    Dacina moe
    FémininAge : 45Messages : 171

    Ven 20 Mar 2015 - 15:14

    Merci beaucoup :)
    Kamesora
    Kamesora
    FémininAge : 31Messages : 93

    Ven 20 Mar 2015 - 23:45

    merci beaucoup
    Katuro
    Katuro
    FémininAge : 25Messages : 39

    Sam 21 Mar 2015 - 14:44

    C'est vraiment classe **
    Syx
    Syx
    MasculinAge : 25Messages : 207

    Sam 21 Mar 2015 - 16:50

    Sublime, merci !




    ~
    Loud Clash
    Loud Clash
    MasculinAge : 30Messages : 69

    Dim 22 Mar 2015 - 1:21

    Merci ^^
    Oror
    Oror
    FémininAge : 34Messages : 97

    Dim 22 Mar 2015 - 13:07

    Merci !! ^^



    profil - Profil "moderne" avec effet hover - Page 12 351490minion
    Irony
    Irony
    FémininAge : 26Messages : 102

    Dim 22 Mar 2015 - 20:02

    Merci c'est superbe *w*
    Hana Evali
    Hana Evali
    FémininAge : 33Messages : 195

    Dim 22 Mar 2015 - 23:58

    Merci ^^



    profil - Profil "moderne" avec effet hover - Page 12 Ye49
    Memorian
    Memorian
    FémininAge : 29Messages : 52

    Mar 24 Mar 2015 - 3:54

    Merci beaucoup! :)
    Choko
    Choko
    FémininAge : 24Messages : 61

    Sam 28 Mar 2015 - 19:26

    Toi être dieu, merci *w*
    AnimeFanGirl199
    AnimeFanGirl199
    FémininAge : 26Messages : 13

    Sam 28 Mar 2015 - 22:01

    Merci! :)
    Uther
    Uther
    MasculinAge : 27Messages : 93

    Dim 29 Mar 2015 - 3:08

    cc
    Yogi Nakagawa
    Yogi Nakagawa
    MasculinAge : 23Messages : 94

    Lun 30 Mar 2015 - 17:30

    Thanx
    LyN[ss]
    LyN[ss]
    FémininAge : 32Messages : 105

    Lun 30 Mar 2015 - 23:52

    Vraiment très joli =D
    Merci beaucoup pour ce partage !
    TUC
    TUC
    FémininAge : 36Messages : 103

    Mar 31 Mar 2015 - 11:28

    merci :)



    profil - Profil "moderne" avec effet hover - Page 12 Tumblr_msx9fygOsJ1qlujrso1_250 profil - Profil "moderne" avec effet hover - Page 12 Tumblr_msx9fygOsJ1qlujrso2_250 profil - Profil "moderne" avec effet hover - Page 12 Tumblr_msx9fygOsJ1qlujrso3_250 profil - Profil "moderne" avec effet hover - Page 12 Tumblr_msx9fygOsJ1qlujrso4_250
    Tameless+
    Tameless+
    FémininAge : 26Messages : 252

    Mer 1 Avr 2015 - 5:09

    Woaaaa *-* j'adooooore l'effet ! Merci du partage !



    profil - Profil "moderne" avec effet hover - Page 12 LwrfNGA
    Kathee
    Kathee
    FémininAge : 30Messages : 680

    Ven 3 Avr 2015 - 23:02

    Neeeeeeeeeed *_____*

    Bravo c'est superbe !





    Forum dérivé ouat
    dans un univers steampunk :heart:
    moram22
    moram22
    MasculinAge : 29Messages : 7

    Mar 7 Avr 2015 - 20:28

    Merci !
    tutox
    tutox
    MasculinAge : 42Messages : 22

    Mer 8 Avr 2015 - 9:39

    merci à toi super gentil
    chouchounette
    chouchounette
    FémininAge : 32Messages : 96

    Mer 8 Avr 2015 - 18:14

    Merci
    remrem
    remrem
    MasculinAge : 26Messages : 48

    Mer 8 Avr 2015 - 22:06

    Merci !
    Kalypso San
    Kalypso San
    FémininAge : 28Messages : 21

    Ven 10 Avr 2015 - 9:02

    Merci ! c:



    profil - Profil "moderne" avec effet hover - Page 12 4keb

    Liens / Contacts:
    Saia
    Saia
    FémininAge : 29Messages : 195

    Ven 10 Avr 2015 - 22:34

    merci :)



    profil - Profil "moderne" avec effet hover - Page 12 Finit10
    Contenu sponsorisé


      La date/heure actuelle est Dim 12 Mai 2024 - 22:37