changer un input au survol d'une image

css: .bs { width:45px; background-color:white; padding:5px; border-radius:5px; transition:all 0.5s; } .bs:hover { background-color:#DDDDDD; transition:all 0.5s; } .bs:hover .search { display:block

6
Hexagone en css3 ou SVG?
ksta,

CSS .hexagon4 { display: inline-block; overflow: hidden; width: 20em; height: 20em; transform: rotate(-30deg) skewX(30deg) scaleY(.866); } .hexagon4 a { display: block; height: 100%; transform: scaleY(1.155) skewX(-30deg) rotate

5
Intégrer Bootstrap 3 dans cakephp

css/ | |__ bootstrap.css | |__ bootstrap.min.css | |__ bootstrap-theme.css | |__ bootstrap-theme.min.css |__ js/ | |__ bootstrap.js | |__ bootstrap.min.js |__ fonts/ |__ glyphicons-halflings-regular.eot |__ glyphicons-halflings-regular.svg |__ glyphicons-halflings-regular.ttf |__ glyphicons-halflings-regular.woff Le dossier CSS et JS pas de soucis ... mais le dossier FONTS, on le place ou et comment

4
PB de clearInterval

css({"backgroundColor": "darkseagreen"}); // une fois arrivé à 0 on affiche un message if (distance < 0) { clearInterval(x); // affichage après expiration $("#countDown").text("Votre réservation vient d'expirer..."); $("footer").css({"background

2
[WIP] A la découverte du html !

css afin de pouvoir intégrer par moi-même mes différents designs ! Je suis donc en train de coder une toute petite page "portail" pour rediriger entre mon blog et mon portfolio

2
Site avec beaucoup d'animations

Css Awards.. J'estime avoir un petit niverau en JS en animation pareil, css aussi J'aimerais vous demander car des fois je suis perdu par rapport à quoi

0
Menu dynamique CSS3

css de l'effet reste sur le menu actif. J'ai utilisé l'action :focus, qui fonctionne, mais lorsque je clique ailleurs, il perd le focus et du coup le menu

13
Animation de la propriété margin

ligne d'animation: $("#logo-wrap").css("margin-left", $("body").css('width')/2); Pour fixer la valeur de margin-left, mais ça ne change rien. Quelqu'un sait-il comment faire?

9
Light box personnel

css({'left':''+wind.delx+'px','top':''+wind.dely+'px','height':''+img.cadrey+'px','width':''+img.cadrex+'px'}); $('#njbox_img').css({'height':''+img.y+'px','width':''+img.x+'px'}); }); function redim_taille(){ //alert('wind.x='+wind.x+'; '+'wind.y='+wind.y

12
Création d'un plugin pour du drag and drop upload

css({width: percentComplete * 100 + '%'}).text(percentComplete.toFixed(2) * 100 + '%'); } }, false); xhr.addEventListener("progress", function (evt) { if (evt.lengthComputable) { var percentComplete = evt.loaded / evt.total; $('.'+div).css({width: percentComplete * 100 + '%'}).text(percentComplete.toFixed(2) * 100 + '%'); } }, false); return

0