pense-bête de bruno sanchiz

Accueil > Programmation > Html Css Javascript... > JAVASCRIPT:quelques scripts

JAVASCRIPT:quelques scripts

Publié le 4 août 2017, dernière mise-à-jour le 1er septembre 2024, 7 visites, visites totales.

http://www.outils-web.com/page-script-javascript.asp


document.getElementById("angle").innerHTML
document.getElementById("image").height
document.getElementById("image").style.left="200px" ;
document.getElementById("image").style.position="absolute" ;


math

  • Math.round

    souris

  • position de la souris

onClick https://www.w3schools.com/jsref/dom_obj_event.asp


touche / key (https://www.w3schools.com/jsref/event_key_key.asp) :


quelques fonctions :

///////////////////////////   TAILLES   ///////////////////////////
function TailleDeLaPage(){ // V1.1
function agrandit(id){ // V1.1
function Largeur_DeLaFenetre(){ // V1.1
function Hauteur_DeLaFenetre(){ // V1.1
function HauteurSet(a,valeur="100%"){document.getElementById(a).style.height=valeur;}
/////////// AFFICHAGE ( block...
function affiche(a){ // V1.1
function cache(a){ // V1.1
function AfficheON(a){ // V1.1
function AfficheC(a){ // V1.1
function CacheC(a){ // V1.1
////////////////////////// DISTANCE /////////////////////////////////
function GetDistance(origin, destination) { // V1.1
function toRadian(degree) { // V1.1
function allume(a){ // V1.1
function ExecuteLaFonctionDansT(microsecondes){ // V1.1
function ALPHAallume(a){ // V1.1
function BetaMallume(a){ // V1.1
// Contenu des elements
function DetruitHTML(a){ // V1.1
function ContenuHtml(ID){ // V1.1
function ChangeContenuHtml(ID,texte){ // V1.1
function ChangeContenuHtmlON(ID,texte1,texte2){ // V1.1
[bruno sanchiz]