Connaissances Informatiques >> programmation >> Computer Programming Languages >> Content
  Derniers articles
  • Différences entre Vs tableau d'octe…
  • Comment cibler une soumission de for…
  • Comment compiler SWC 
  • Comment trouver des débordements de…
  • Comment utiliser WPF TextBlock 
  • La définition d'UML 
  • Raisons d'écrire une boucle infinie…
  • Comment savoir Macromedia flash 
  • Comment faire pour augmenter le LINQ…
  • Définition de Substring 
  •   Computer Programming Languages
  • C /C + + Programming

  • Computer Programming Languages

  • Delphi Programming

  • Programmation Java

  • Programmation JavaScript

  • PHP /MySQL Programmation

  • programmation Perl

  • Programmation Python

  • Ruby Programming

  • Visual Basics programmation
  •  
    Computer Programming Languages

    Comment faire une horloge numérique

    Si logiciels tiers horloges numériques vous ennuient , de construire votre propre en utilisant Hypertext Application Microsoft (HTA) langage de programmation . Utilisation des fonctionnalités offertes par Internet Explorer, la langue HTA apporte la puissance de HTML et JavaScript sur ​​votre bureau. Les développeurs Web placent horloges numériques sur les pages Web à l'aide de quelques lignes de JavaScript. En ajoutant ce code à un programme d'ETS place , vous pouvez personnaliser votre propre horloge numérique de bureau à l'aide familier feuille de style en cascade (CSS ) des propriétés. Instructions
    1

    Ouvrez le Bloc-notes et collez ce bloc de déclaration HTA dans un nouveau document :



    HTA type = " text /css" > Photos <p> clockStyle {border : . bleu pointillé épais ; <br> <p> background-color: # FFFF00 ; width: 100px ; <br> hauteur de <p> : 20px , text-align : center; } <br> <p> <br> <p> </style> Photos <p> la partie «style» de ce code, indiqué au bas , définit une classe CSS nommée " clockStyle . " Cette classe définit l'apparence de l'horloge. L'attribut de la frontière, par exemple , met une bordure bleue en pointillés épais autour de l'horloge . La couleur de fond de l'horloge est jaune. Les attributs de largeur et de hauteur déterminent les dimensions en pixels de l'horloge <br> 2 <p> Ajouter ce bloc JavaScript ci-dessous le code que vous voyez dans l'étape précédente: . <br> <p> < Script type = " text /javascript" language = "javascript "> Photos <p> var WindowWidth = 150; <br> <p> var windowHeight = 100; <br> <p> var tickInterval = 1000; <br> <p> horloge var ; < br > <p heures var ; <br> <p> minutes var ; <br> <p> secondes var ; <br> <p> var displaySwitch = 9 ; <br> <p> var delimiter = ":" ; Photos <p> var clockBody ; <br> fonction StartClock <p> () { var <br> <p> date = new Date () ; <br> <p> var time = ""; <br> < p> heures = Date.getHours (); <br> <p> minutes = Date.getMinutes () ; <br> <p> secondes = date.getSeconds (); <br> <p> si ( heures < = displaySwitch ) <br> <p> heures = "0" + heures ; <br> <p> if ( minutes < = displaySwitch ) <br> <p> minutes = "0" + minutes; <br> <p> if ( secondes < = displaySwitch ) <br> <p> secondes = "0" + secondes ; <br> <p> var = currentTime heures + minutes + + séparateur delimiter + secondes ; <br> <p> clockBody.innerHTML = currentTime ; <br> <p> horloge = setTimeout (" StartClock ()", tickInterval ) ; <p> <br> } <br> <p> window.onload = function () { fenêtre <p> <br> . resizeTo ( WindowWidth , windowHeight ) ; <br> <p> clockBody = document.getElementById (" clockBody "); <br> <p> StartClock (); } <br> <p> <br> <p> < /script> Photos <p> Notez les variables WindowWidth et windowHeight au sommet du bloc de code. Ce contrôle de la taille de la fenêtre qui contient l' horloge numérique . Changez ces valeurs à tout ce que vous aimez <br> 3 <p> Ajoutez le code ci-dessous après le code décrit dans l'étape précédente: . <br> <p> <body> <br> <p> <div id="clockBody" class="clockStyle"> <br> <p> </div> Photos <p> </body> Photos <p> </html > <br> <p> Cela crée un élément div . C'est le corps de l' horloge. Ses références aux attributs de la déclaration de style CSS décrits précédemment . <br> 4 <p> Appuyez sur "Ctrl " et " S" simultanément et tapez " DigitalClock.hta " dans la case " Nom de fichier " qui apparaissent dans le "Save comme " fenêtre. Cliquez sur "Enregistrer " pour enregistrer le fichier . <br> 5 <p> Ouvrez l'Explorateur Windows et de trouver ce fichier. Double- cliquez sur le fichier pour afficher l'horloge numérique. <br> <br> <div class=fr4><script language='javascript' src='http://www.ordinateur.cc/ad/fr/4.js'></script></div> <div class=fr5><script language='javascript' src='http://www.ordinateur.cc/ad/fr/5.js'></script></div> </td> </tr> </table> <table width="95%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td align="center" > </td> </tr> </table> <table width="95%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td height="39" align="left" >Article précédent:<span class="nr"> <a class='LinkPrevArticle' href='/programmation/Computer-Programming-Languages/88829.html' >Comment lire le contenu d' un fichier texte en utilisant VBScript </a></li></span><br /> Article suivant:<span class="nr"> <a class='LinkNextArticle' href='/programmation/Computer-Programming-Languages/88831.html' >Comment construire un programme informatique </a></li></span></td> </tr> </table> <table width="95%" height="10" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td align="left" ></td> </tr> </table> <table width="96%" height="22" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#EFEFEF"> <tr> <td width="2%" align="left" ></td> <td width="98%" align="left" >Articles recommandés</td> </tr> </table> <table width="95%" height="10" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td align="left" ></td> </tr> </table> <table width="95%" height="10" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td align="left" > <li><a href="/programmation/Computer-Programming-Languages/86559.html">Comment voulez-vous entrer états d'entrée dans MATLAB </a></li><li><a href="/programmation/Computer-Programming-Languages/88023.html">Web Testing Vs . Test Client Server </a></li><li><a href="/programmation/Computer-Programming-Languages/86874.html">Comment faire un Web Bot </a></li><li><a href="/programmation/Computer-Programming-Languages/88334.html">Comment coller Résultats et exécuter des macros dans Excel De Oracle SQL </a></li><li><a href="/programmation/Computer-Programming-Languages/86737.html">Common Lisp moteur de rendu HTML & Binding </a></li><li><a href="/programmation/Computer-Programming-Languages/87375.html">Comment garder la case à cocher Valeur sur un GridView Trier </a></li><li><a href="/programmation/Computer-Programming-Languages/88755.html">Comment faire une bulle sort </a></li><li><a href="/programmation/Computer-Programming-Languages/87024.html">Qu'est-ce qu'une application graphique </a></li><li><a href="/programmation/Computer-Programming-Languages/88768.html">Comment faire pour augmenter les performances d'un rapport Crystal de sorte qu'il sera plus rapide </a></li><li><a href="/programmation/Computer-Programming-Languages/87236.html">Comment compter le nombre de lignes de code que vous avez </a></li> </td> </tr> </table> <table width="95%" height="10" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td align="left" ></td> </tr> </table></td> </tr> </table> <table width="980" height="12" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td></td> </tr> </table> <table width="980" height="90" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#3597E2"> <tr> <td align="center" class="foot">Connaissances Informatiques © http://www.ordinateur.cc <br /> </td> </tr> </table> <!--top start --> <!--top end --> </body> </html>