Implementación
La idea básica de nuestro pin es superponer una imagen a otra, o lo que es lo mismo, colocar nuestro pin encima de la imagen que queramos. Para ello debemos asegurarnos de que nuestra imagen tiene la propiedad
relative
, en caso contrario nuestros pins no podrán situarse encima de la imagen. Para añadirlo icluye el código style="position:relative"
a la imagen o a su clase de tener una.
Una vez tengamos esto lo único que debemos hacer es añadir el código html del pin y su estilo. A continuación os exponemos 6 ejemplos de como podrían quedar vuestros pins. En caso de que te guste alguno solo deberás copiar su código html y su css en tu web, editar el atributo left
(distancia horizontal que quieres que tenga tu pin) y top
(distancia vertical que quieres que tenga tu pin).
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<img style="position:relative" src="http://codictados.com/wp-content/uploads/2014/11/gato-con-gafas-1024x640.jpg"> <a style="top: 25%;left: 10%" class="hint--right pin" href="#" data-hint="Pin de rotación"><img class="rotacion" src="http://codictados.com/wp-content/uploads/2014/11/localizacion-flechas32x32.png" ><span></span></a> <a style="top: 50%;left: 10%" class="hint--right pin" href="#" data-hint="Pin con impulso"><span class="impulso"></span></a> <a style="top: 75%;left: 10%" class="hint--right pin" href="#" data-hint="Pin de localización"><img class="flotacion" src="http://codictados.com/wp-content/uploads/2014/11/localizacion32x32.png" ><span></span></a> <a style="top: 25%;left: 88%;" class="hint--right pin" href="#" data-hint="Pin de balanceo"><img class="balanceo" src="http://codictados.com/wp-content/uploads/2014/12/search48x32.png" ></a> <a style="top: 50%;left: 88%" class="hint--right pin escalado" href="#" data-hint="Pin escalado"><img src="http://codictados.com/wp-content/uploads/2014/12/MB__plus.png" width="32"></a> <a style="top: 75%;left: 88%" class="hint--right pin semirotacion" href="#" data-hint="Pin de semirotacion"><img src="http://codictados.com/wp-content/uploads/2014/12/FAQ-32.png" ><span></span></a> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 |
/* ============================================== Clase general para todos los pins. En caso de utilizar algún pin con la propiedad animation puedes eliminar la propiedad transition de esta clase ============================================== */ .pin{ position:absolute!important; //yo pongo important porque mi plantilla me incorpora los enlaces dentro de una etiqueta <p> pero si esto no ocurre en tu web puedes eliminar el important -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease; } .pin img{ -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease; } /* ============================================== rotacion ============================================== */ .rotacion{ animation-name: rotacion; -webkit-animation-name: rotacion; animation-duration: 3s; -webkit-animation-duration: 3s; animation-timing-function:linear; -webkit-animation-timing-function: linear; animation-iteration-count: infinite; -webkit-animation-iteration-count: infinite; } @keyframes rotacion { 100% { transform : rotate(360deg); } } @-webkit-keyframes rotacion { 100% { -webkit-transform : rotate(360deg); } } /* ============================================== impulso ============================================== */ .impulso{ width: 16px; height: 16px; background-color: #00b9f7; border-radius: 50%; margin: 8px; display: block; } .impulso{ animation-name: impulso; -webkit-animation-name: impulso; animation-duration: 1.5s; -webkit-animation-duration: 1.5s; animation-iteration-count: infinite; -webkit-animation-iteration-count: infinite; } @keyframes impulso{ 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.2); opacity: 0.7; } 100% { transform: scale(1.5); opacity: 0; } } @-webkit-keyframes impulso{ 0% { -webkit-transform: scale(1); opacity: 1; } 50% { -webkit-transform: scale(1.2); opacity: 0.7; } 100% { -webkit-transform: scale(1.5); opacity: 0; } } /* ============================================== flotacion ============================================== */ .flotacion{ animation-name: flotacion; -webkit-animation-name: flotacion; animation-duration: 1.5s; -webkit-animation-duration: 1.5s; animation-iteration-count: infinite; -webkit-animation-iteration-count: infinite; } @keyframes flotacion { 0% { transform: translateY(0%); } 50% { transform: translateY(15%); } 100% { transform: translateY(0%); } } @-webkit-keyframes flotacion { 0% { -webkit-transform: translateY(0%); } 50% { -webkit-transform: translateY(15%); } 100% { -webkit-transform: translateY(0%); } } /* ============================================== Balanceo ============================================== */ .balanceo{ animation-name: balanceo; -webkit-animation-name: balanceo; animation-duration: 2.5s; -webkit-animation-duration: 2.5s; animation-iteration-count: infinite; -webkit-animation-iteration-count: infinite; } @keyframes balanceo{ 0% { transform: rotate(-10deg); } 50% { transform: rotate(10deg); } 100% { transform: rotate(-10deg); } } @-webkit-keyframes balanceo{ 0% { -webkit-transform: rotate(-10deg); } 50% { -webkit-transform: rotate(10deg); } 100% { -webkit-transform: rotate(-10deg); } } /* ============================================== escalado ============================================== */ .escalado:hover:before,.escalado:hover:after{ -webkit-transform: translateX(20px); -moz-transform: translateX(20px); transform: translateX(20px)!important; } .escalado:hover img{ o-transform : scale(1.2)); /* Opera */ -ms-transform: scale(1.2); /* IE 9 */ -webkit-transform: scale(1.2); /* Chrome, Safari, Opera */ transform: scale(1.2); } /* ============================================== semirotacion ============================================== */ .semirotacion:hover img{ transform : rotate(180deg); -moz-transform : rotate(180deg); /* Firefox */ -webkit-transform : rotate(180deg); /* Chrome - Safari */ -o-transform : rotate(180deg); /* Opera */ } |