HTML click-throughs or clickable PDFs) - the ability to manipulate bitmaps and create vector art in very straightforward ways (e.g., click on an object directly on the canvas, and FW knows
html mais en respectant les saut de lignes présent dans le textarea. Comment faire ? Voici mon script : var new_text = text_edit.parent().parent().find(".contenu_textarea").val(); text_edit.parent().parent().parent().find
HTML ``` Acerca de Capitales Habitante Informacion Bandera Climat Temperatura Cultura Musica Cocinar Bailar Mas infos ``` Voici mon code CSS ``` #menu-deroulant{ /* Le ul au complet, la liste au complet, (mais
html ``` Prénom * Nom * Tél * Email * Adresse Code postal * Ville Type de produit Marque Référence Surface votre projet Description rapide de votre proje: Envoyer ``` le traitement: ``` public static function contact(){ if(isset
html { height:100%; } body { height:100%; margin:0px; background-color: #775b59; font-family: Calibri,Trebuchet MS; } #bloc_page { min-height:100%; /*background-image: url("images/fond.jpg");*/ background-repeat:no-repeat; width
ceci : 'enclosure' => array('url' => $this->Html->url('/img/mon-image.jpg', true)) Mais l'image ne s'affiche pas. Seul un lien vers l'image est affiché. Je vous remercie par avance. Birzat
HTML, Javascript, CSS, NodeJs. **Généralités et avancement** Ce site est avant tout un blog d'actualités sur tout ce qui touche au monde des jeux vidéos. Mais nous avons voulu
soit écrasée. Mais la question c'est comment attribuer la construction de l'infobulle à chaque marker ? Voici le code : Javascript : [code] function initialize() { geocoder = new google.maps.Geocoder(); var mapOptions = { zoom: 5, minZoom : 5, maxZoom : 10, center: new google.maps.LatLng(46.2276380, 2.2137490), disableDefaultUI: true, overviewMapControl : false, zoomControl : true, mapTypeId: google.maps.MapTypeId.ROADMAP } map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions); setMarkers(map, centres_plages); } function codeAddress() { var address = document.getElementById('adresse_google_map').value; geocoder.geocode( { 'address': address}, function(results, status) { if (status == google.maps.GeocoderStatus.OK) { map.setCenter(results[0].geometry.location); } else { alert('Geocode was not successful for the following reason: ' + status); } }); } /* [0] Nom du domaine [1] Latitude [2] Longitude [3] Rue [4] Code poste, Ville [5] Téléphone [6] Fax [7] Email [8] URL */ var centres_plages = [ ['Domaine 1', 48.85887766623372, 2.3470598999999766, "Rue1", "75 Paris", "Tél. : 0102030405", "Fax. : 0102030405", "contact@toto.com", "https://www.google.fr/"], ['Domaine 2', 44.863752324699426, -0.5861409999999978, "Rue2", "33200 Bordeaux", "Tél. : 0102030405", "Fax. : 0102030405", "contact@toto.com", "https://www.google.fr/"], ['Domaine 3', 45.75797832429399, 4.835120949999919, "Rue3", "69060 Lyon", "Tél. : 0102030405", "Fax. : 0102030405", "contact@toto.com", "https://www.google.fr/"] ]; function setMarkers(map, locations) { for (var i = 0; i < locations.length; i++) { var centre_plage = locations*; var myLatLng = new google.maps.LatLng(centre_plage[1], centre_plage[2]); var marker = new google.maps.Marker({ position: myLatLng, map : map, title : centre_plage[0], zIndex : i + 1 }); var contentString = ' '+ ' '+centre_plage[0]+' '+ ' '+ ' '+centre_plage[3]+' ' + ''+centre_plage[4]+' '+ ''+centre_plage[5]+' '+ ''+centre_plage[6]+' '+ ''+centre_plage[7]+' '+ ' En savoir plus '+ ' '+ ' '; var infowindow = new google.maps.InfoWindow({ content : contentString, maxWidth : 600 }); google.maps.event.addListener(marker, 'click', function() { infowindow.open(map,this); }); } } google.maps.event.addDomListener(window, 'load', initialize); [/code] HTML : [code] Ville [/code] Merci par avance ! :)