Posts Tagged “Script”

Coins arrondis et ombre portée en CSS

0Ted8th oct 2009Script html, Tuto, Webdesign, , ,

.shadow{ box-shadow: 7px 7px 8px #818181; -webkit-box-shadow: 7px 7px 8px #818181; -moz-box-shadow: 7px 7px 8px #818181; filter: progid:DXImageTransform.Microsoft.dropShadow(color=#818181, offX=7, offY=7, positive=true); } #box More »

Rollover et images

Ted23rd avr 2009Script html,

Exemple : Sans lien html

Afficher / masquer une ‹div›

0Ted22nd avr 2009Script html, ,

Exemple : function visibilite(thingId,txtAff,txtMasque) { var targetElement; var targetElementLink; targetElement = document.getElementById(thingId) ; targetElementLink = document.getElementById(thingId+’Link’); if (targetElement.style.display == « none ») { targetElement.style.display = More »