| Cours n°1 | |
|
|
Auteur | Message |
---|
Alex XIV Admin
Nombre de messages : 236 Age : 48 Localisation : par GPS Date d'inscription : 02/02/2007
| Sujet: Cours n°1 Lun 12 Fév 2007 - 4:37 | |
| - Citation :
- <html>
<head> <title>CSS 1 - Les feuilles internes</title>
<!--UTILISATION DES FEUILLES DE STYLES INTERNES--> <!--La feuille suivante s'applique à toutes les balise <p> puis <img>, puis <input>-->
<style type="text/css">
p{ color:#0000ff;font-size=12 ; font-family:verdana,arial ; background-color:#aaaaaa;padding:3; } img{ border-color:#0000ff;border-width:1;border-style:dotted } input{ color:#0000ff;font-size=12 ; font-family:verdana,arial ; background-color:#aaaaaa ;padding:3;border-color:#ff0000;border-width:1;border-style:dotted } </style>
</head> <body topmargin=""> <center>
<!--Les CSS déclarés ci dessus s'appliquent sur les balises ci-dessous--->
<p>Rechercher</p> <input type="text"><br /><br />
<p> Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero. </p>
<br /><br /> <img src="1b.jpg"><br /><br />
</center> </body> </html>
Dernière édition par le Lun 12 Fév 2007 - 11:09, édité 1 fois | |
|
| |
Alex XIV Admin
Nombre de messages : 236 Age : 48 Localisation : par GPS Date d'inscription : 02/02/2007
| Sujet: 2 Lun 12 Fév 2007 - 4:38 | |
| - Citation :
- <html>
<head> <title>CSS 2 - Utilisation des classe avec . (point!)</title>
<!--UTILISATION DES CLASSES--> <!--Les classes suivante s'applique à toutes les balise <p> puis <img>, puis <textarea>--> <!--Afin d'appeler les classe, on va placer class="un" et class="deux" dans les balises où l'on veur appliquer cette classe -->
<style type="text/css"> .un{ color:#ff0000; background:#0000ff ; font-family:trebuchet } .deux{ color:#0000ff ; background:#00ff00 ; font-family:verdana,arial ; border-style:dotted ; border-color:#ff0000 } </style>
</head> <body topmargin=""> <center>
<!--On place les classes directement dans les balises d'ouvertures--> <p>BIENVENUE</p>
<textarea rows="5" class="deux"></textarea> <textarea rows="5" class="un"></textarea><br /><br />
<p class="un"> Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, <br /> a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero. </p> <p class="deux"> Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, <br /> a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero. </p>
<br /><br /> <img src="1b.jpg" class="deux" /><br /><br /> <img src="1b.jpg" class="un" /><br /><br />
</center> </body> </html>
Dernière édition par le Lun 12 Fév 2007 - 4:44, édité 1 fois | |
|
| |
Alex XIV Admin
Nombre de messages : 236 Age : 48 Localisation : par GPS Date d'inscription : 02/02/2007
| Sujet: 3 Lun 12 Fév 2007 - 4:38 | |
| - Citation :
- <html>
<head> <title>CSS 3 - Les balise span</title>
<!--BALISE SPAN--> <!--SPAN s'utlise un peu comme la balise div, sauf qu'avec div il y' a un passage à la ligne--> <!--On va appliquer un font-size en pourcentage - Chaque lettre sera donc 120% plus grande que la précendente!-->
<style type="text/css"> span{ font-size:120% } </style>
</head> <body topmargin=""> <center>
<p>BIENVENUE</p>
A<span>B<span>C<span>D<span>E<span>F</span></span></span></span></span>
</center> </body> </html>
Dernière édition par le Lun 12 Fév 2007 - 4:41, édité 1 fois | |
|
| |
Alex XIV Admin
Nombre de messages : 236 Age : 48 Localisation : par GPS Date d'inscription : 02/02/2007
| Sujet: 4 Lun 12 Fév 2007 - 4:39 | |
| - Citation :
- <html>
<head> <title>CSS 4 - La balise Body</title>
<!--BALISE BODY--> <!--On place les valeurs que l'on veut attribuer à la balise body--> <!--Voir aussi Support de cours pour les autres attributs-->
<!--background-position = Position de l'image de fond en px séparés par un espace pour X et Y donc Largeur et Hauteur, ATTENTION Ne pas placer de commentaires dans les CSS !!!!!!!-->
<style type="text/css"> body{ background-image:url(1b.jpg) ; background-repeat:no-repeat ; background-position:152 77; } </style>
</head> <body> <center>
</center> </body> </html>
Dernière édition par le Lun 12 Fév 2007 - 4:43, édité 1 fois | |
|
| |
Alex XIV Admin
Nombre de messages : 236 Age : 48 Localisation : par GPS Date d'inscription : 02/02/2007
| Sujet: 5 Lun 12 Fév 2007 - 4:39 | |
| - Citation :
- <html>
<head> <title>CSS 5 - Les balises INPUT</title>
<!--Permet de personnaliser les balises input ici on va définir à tour de rôle les attributs de la bordure Droite, gauche, haut et bas!--> <!--A la première ligne on enlève toutes les bordure par défaut!--> <style type="text/css"> input{ border:; border-left-color:#ff0000; border-left-width:2; border-left-style:solid; border-bottom-color:#0000ff; border-bottom-width:2; border-bottom-style:dashed; border-top-color:#00ff00; border-top-width:1; border-top-style:solid; border-right-color:#00ff00; border-right-width:1; border-right-style:dotted; } </style>
</head> <body topmargin="100"> <center>
<input type="text" />
</center> </body> </html>
Dernière édition par le Lun 12 Fév 2007 - 4:43, édité 1 fois | |
|
| |
Alex XIV Admin
Nombre de messages : 236 Age : 48 Localisation : par GPS Date d'inscription : 02/02/2007
| Sujet: 6 Lun 12 Fév 2007 - 4:40 | |
| - Citation :
- <html>
<head> <title>CSS 6- Utilisation des classes avec #</title>
<!--UTILISATION identique aux classes se déclarant avec les points!--> <!--Pour lier une balise à une classe déclarée avec # on place id="" et non class=""--> <!--Il est preferable de créer des classes avec # pour leur utilisation dans le DHTML où l'on recuperera la valeur de id-->
<style type="text/css"> #premier{ color:#ff0000; background:#ff00ff ; font-family:trebuchet } #second{ color:#0000ff ; background:#ffff00 ; font-family:verdana,arial ; border-style:dotted ; border-color:#ff0000 } #troisieme{ color:#aaddff ; background:#000fff ; font-family:verdana,arial ; border-style:solid ; border-color:#00f0f0 } </style>
</head> <body topmargin="100"> <center>
<input type="text" id="premier" /> <input type="text" id="second" /> <input type="text" id="troisieme" /><br /><br /><br /><br />
<p id="second"> Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla ... </p> <p id="troisieme"> Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla ... </p> <p id="premier"> Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla ... </p>
<br /> <br />
</center> </body> </html>
Dernière édition par le Lun 12 Fév 2007 - 11:46, édité 2 fois | |
|
| |
Alex XIV Admin
Nombre de messages : 236 Age : 48 Localisation : par GPS Date d'inscription : 02/02/2007
| Sujet: 7 Lun 12 Fév 2007 - 4:40 | |
| - Citation :
- <html>
<head> <title>CSS 7 - Les balises div</title>
<!--UTILISATION des CSS avec les balises div-->
<!--Pour positionner les div on place= position:.... , top:.... et left:.... etc...ici en pixels--> <!--Ici les textes sont aussi placés dans une balise div--> <!--On a placé text-align:justify dans #t2 afin de justifier le texte à l'interieur du div--> <!--On a placé text-align:center dans #t1 afin de centrer le texte à l'interieur du div-->
<!--ATTENTION = mettre uniquement le width pour laisser le heigth se gérer automatiquement --> <!-- ATTENTION = Si l'on place left:... ou right:... Il faut impérativement placé position:absolute-->
<style type="text/css"> #bv{ width:40 ; height:450 ; background:red; position:absolute ; top:30 ; left:400 } #rect{ width:250 ; height:300 ; background:green; position:absolute ; top:100 ; left:280 } #t1{ width:250 ; height:300 ; text-align:center
} #t2{ width:250 ; height:300 ; position:absolute ; left:600 ; text-align:justify } </style>
</head>
<body topmargin="100">
<div id="bv"></div> <div id="rect"></div> <div id="t1">The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like). </div> <br /><br /> <div id="t2">Alexxum ipsus will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like). </div>
</center> </body> </html> | |
|
| |
Alex XIV Admin
Nombre de messages : 236 Age : 48 Localisation : par GPS Date d'inscription : 02/02/2007
| Sujet: 8 Lun 12 Fév 2007 - 5:05 | |
| - Citation :
- <html>
<head> <title>CSS 8 - Les balises div...(suite)</title>
<!--AUTRE EXERCICE... toujours avec les balises div--> <!--Le but étant de placer des balises div contenant textes, images ou blocs simples en gérant leur attributs avec les CSS--> <!--Dans #rect3 on a placé l'attribut= overflow:hidden ( On aurait pu mettre= overfow:auto pour une gestion automatique, on aura alors des scrollbars ) Puis on applique ce style au div contenant une image. Ici hidden sert à masquer toutes les parties de l'image qui débordent du div--> <!-- z-index sert à determiner la position du calque ( div ) sur la page, 0 étant l'élement du dessous puis 1, 2 etc...-->
<style type="text/css"> #bv{ width:20 ; height:800 ; background:red; position:absolute ; top:0 ; left:150 ; z-index:0; } #rect{ width:250 ; height:300 ; background:green; position:absolute ; top:100 ; left:280 ; z-index:3; } #rect2{ width:400 ; height:400 ; background:blue; position:absolute ; top:300 ; left:20 ; z-index:4; } #rect3{ width:200 ; height:200 ; background:blue; position:absolute ; top:50 ; left:480 ; overflow:hidden ; z-index:2; } #t1{ width:250 ; height:300 ; text-align:center ; position:absolute ; top:300 ; left:800 ;z-index:5; } #t2{ width:250 ; height:300 ; position:absolute ; left:600 ; text-align:right ;z-index:6; } #rect4{ width:100 ; height:100 ; position:absolute ; background:red ; left:620 ; top:0 ; text-align:right ; overflow:hidden ; z-index:1; } </style>
</head>
<body topmargin="100">
<div id="rect3"><img src="1b.jpg"></div> <div id="bv"></div> <div id="rect"></div> <div id="rect2"></div> <div id="rect4"></div>
<div id="t1">The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like). </div> <br /><br />
<div id="t2">Alexxum ipsus will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like). </div>
</center> </body> </html> | |
|
| |
Alex XIV Admin
Nombre de messages : 236 Age : 48 Localisation : par GPS Date d'inscription : 02/02/2007
| Sujet: exo 10 DHTML et les images Lun 12 Fév 2007 - 8:30 | |
| - Citation :
- <html>
<head> <title>DHTML 1 - Les images</title> </head>
<body topmargin="100"> <center>
<!--Ici on crée un rollover...Ces lignes sont un mélange de HTML et de Javascript--> <img src="3.jpg" onmouseover="this.src='2.jpg'" onmouseout="this.src='1b.jpg'">
</center> </body> </html>
Dernière édition par le Lun 12 Fév 2007 - 8:31, édité 1 fois | |
|
| |
Alex XIV Admin
Nombre de messages : 236 Age : 48 Localisation : par GPS Date d'inscription : 02/02/2007
| Sujet: exo 11 DHTML Lun 12 Fév 2007 - 8:30 | |
| - Citation :
- <html>
<head> <title>DHTML 2 - Les images...(suite...)</title>
<!--Une autre méthode de rollover...-->
<script language="javascript"> /////////////SCRIPT////////////////////////////////////// ///["im1"] correspond à l'id de l'image, ici 3.jpg que l'on veut remplacer par 2.jpg au passage de la souris..../////// /// Ici il faut comprendre : La source de l'image [im1] deviendra 2.jpg ( puisque dans la balise img on a: mouseover="changer('2.jpg')" function changer(nom){ document.images["im1"].src=nom; } </script> </head>
<body topmargin="100"> <center> <!--On va appeler une fonction au mouseout et au mouseout--> <!--Les mouseveover et mouseout appellent la fonction changer() , ici on changera l'image 3.jpg par 2.jpg--> <img src="3.jpg" id="im1" onmouseover="changer('2.jpg')" onmouseout="changer('3.jpg')" >
</center> </body> </html> | |
|
| |
Alex XIV Admin
Nombre de messages : 236 Age : 48 Localisation : par GPS Date d'inscription : 02/02/2007
| Sujet: exo 12 DHTML et div Lun 12 Fév 2007 - 8:47 | |
| - Citation :
- <html>
<head> <title>DHTML 3 - Les div</title> </head>
<style type="text/css"> div{width:150 ; height:150 ; background:#5193ca} </style>
<script language="javascript"> function fond(couleur){ document.getElementById("cube").style.background=couleur; } </script>
<body topmargin="100"> <center>
<div id="cube" onmouseover="fond('red')" onmouseout="fond('#5193ca')"></div>
</center> </body> </html> | |
|
| |
Marco THQ
Nombre de messages : 68 Age : 46 Date d'inscription : 03/02/2007
| |
| |
Noelito THQ
Nombre de messages : 57 Date d'inscription : 02/02/2007
| Sujet: Re: Cours n°1 Lun 12 Fév 2007 - 12:30 | |
| OH MARCO !!!
JE SOUTIENS À TOI POUR LES SUPPORTERS NANTAIS !!! | |
|
| |
FishEye Admin
Nombre de messages : 117 Date d'inscription : 02/02/2007
| Sujet: Re: Cours n°1 Mar 13 Fév 2007 - 10:54 | |
| Quelqu'un a trouvé la propriété qui permet de récupérer la taille réelle d'une fenêtre ? Je cherche mais ne trouve pas.... | |
|
| |
Alex XIV Admin
Nombre de messages : 236 Age : 48 Localisation : par GPS Date d'inscription : 02/02/2007
| Sujet: ... Mar 13 Fév 2007 - 10:57 | |
| pas encore...je te dis dés que j'ai qqchose! | |
|
| |
FishEye Admin
Nombre de messages : 117 Date d'inscription : 02/02/2007
| Sujet: Re: Cours n°1 Mar 13 Fév 2007 - 11:01 | |
| - Alex XIV a écrit:
- pas encore...je te dis dés que j'ai qqchose!
Oki, merci | |
|
| |
FishEye Admin
Nombre de messages : 117 Date d'inscription : 02/02/2007
| Sujet: Re: Cours n°1 Mar 13 Fév 2007 - 12:42 | |
| argh! Saleté de concaténation. | |
|
| |
Contenu sponsorisé
| Sujet: Re: Cours n°1 | |
| |
|
| |
| Cours n°1 | |
|