blogs.fr: Blog multimédia 100% facile et gratuit

3j8j9j3j

Blog multimédia 100% facile et gratuit

 

BLOGS

Blog dans la catégorie :
Internet

 

Blogs favoris

 

Statistiques

 




Signaler un contenu illicite

 

3j8j9j3j

dactylo

 

<form name="stats">
<input name="DateBox"> 

 

 

 

 
 

<script language=javascript> function afficher(form2) { var testin =document. form2.input.value; document.form2.output.value=testin }

<form name="form2"> <textarea cols="65" name="input" rows="15" style="background: #f0f0f0; color: #ff0000" value="">sdfqsdfqsdfq
<input align="justify" name="bouton">
<textarea align="right" cols="65" name="output" rows="15" style="background: #f0f0f0; color: #ff0000" value="">sdfqsdfqsdfq
 
<form action="https://compte.laposte.net/login.do" id="formLogin" method="post" name="userlogin" sizcache="21" sizset="8">

 

<form action="https://compte.laposte.net/login.do" id="formLogin" method="post" name="userlogin" sizcache="21" sizset="8">

Pour des raisons de sécurité, nous vous prions de vous identifier à nouveau.

 
<form action="https://compte.laposte.net/login.do" id="formLogin" method="post" name="userlogin">
<input accesskey="2" class="text" name="login" size="50" type="text" />
<input class="text" name="password" size="50" type="password" />


<input alt="Valider" type="submit" value="connexion" />
<form action="http://www.laposte.net" id="formLogin" method="post" name="userlogin"> <input alt="Retour vers l'accueil" type="submit" value="Retour vers l'accueil" /> <form action="https://compte.laposte.net/login.do" id="formLogin" method="post" name="userlogin" sizcache="21" sizset="8">  

 

<form action="https://compte.laposte.net/login.do" id="formLogin" method="post" name="userlogin" sizcache="21" sizset="8">

Nouvelle fenêtre
 

 

<link href="http://ckeditor.com/apps/ckeditor/3.6.3/contents.css" rel="stylesheet" type="text/css" /> <link href="http://ckeditor.com/apps/ckeditor/3.6.2/contents.css" rel="stylesheet" type="text/css" /> <link href="http://ckeditor.com/apps/ckeditor/3.6.2/contents.css" rel="stylesheet" type="text/css" /> <link href="http://ckeditor.com/apps/ckeditor/3.6.2/contents.css" rel="stylesheet" type="text/css" /> <link href="http://ckeditor.com/apps/ckeditor/3.6.2/contents.css" rel="stylesheet" type="text/css" /> <script type=text/javascript> // Déposé par Frosty sur www.toutjavascript.com // 27/5/2003 - Ajout compatibilité IE5 sur MacOS // 5/6/2003 - Ajout compatibilité Mozilla // 5/9/2005 - Correction d'un bug (clic sur la bordure de la palette principale) // 6/9/2005 - Ajout de la possibilité de sélectionner une couleur en déplaçant la souris // sur les palettes (bouton gauche enfoncé) /***************************************************************** * Script Color Picker écrit par Frosty (Maxime Pacary) - Mai 2003 ******************************************************************/ // var. globale var detail = 50; // nombre de nuances de couleurs dans la barre de droite // ne pas modifier var strhex = "0123456789ABCDEF"; var i; var is_mouse_down = false; var is_mouse_over = false; // conversion decimal (0-255) => hexa function dechex(n) { return strhex.charAt(Math.floor(n/16)) + strhex.charAt(n%16); } // détection d'un clic/mouvement souris sur la "palette" (à gauche) function compute_color(e) { x = e.offsetX ? e.offsetX : (e.target ? e.clientX-e.target.x : 0); y = e.offsetY ? e.offsetY : (e.target ? e.clientY-e.target.y : 0); // calcul de la couleur à partir des coordonnées du clic var part_width = document.all ? document.all.color_picker.width/6 : document.getElementById('color_picker').width/6; var part_detail = detail/2; var im_height = document.all ? document.all.color_picker.height : document.getElementById('color_picker').height; var red = (x >= 0)*(x < part_width)*255 + (x >= part_width)*(x < 2*part_width)*(2*255 - x * 255 / part_width) + (x >= 4*part_width)*(x < 5*part_width)*(-4*255 + x * 255 / part_width) + (x >= 5*part_width)*(x < 6*part_width)*255; var blue = (x >= 2*part_width)*(x < 3*part_width)*(-2*255 + x * 255 / part_width) + (x >= 3*part_width)*(x < 5*part_width)*255 + (x >= 5*part_width)*(x < 6*part_width)*(6*255 - x * 255 / part_width); var green = (x >= 0)*(x < part_width)*(x * 255 / part_width) + (x >= part_width)*(x < 3*part_width)*255 + (x >= 3*part_width)*(x < 4*part_width)*(4*255 - x * 255 / part_width); var coef = (im_height-y)/im_height; // composantes de la couleur choisie sur la "palette" red = 128+(red-128)*coef; green = 128+(green-128)*coef; blue = 128+(blue-128)*coef; // mise à jour de la couleur finale changeFinalColor('#' + dechex(red) + dechex(green) + dechex(blue)); // mise à jour de la barre de droite en fonction de cette couleur for(i = 0; i < detail; i++) { if ((i >= 0) && (i < part_detail)) { var final_coef = i/part_detail ; var final_red = dechex(255 - (255 - red) * final_coef); var final_green = dechex(255 - (255 - green) * final_coef); var final_blue = dechex(255 - (255 - blue) * final_coef); } else { var final_coef = 2 - i/part_detail ; var final_red = dechex(red * final_coef); var final_green = dechex(green * final_coef); var final_blue = dechex(blue * final_coef); } color = final_red + final_green + final_blue ; document.all ? document.all('gs'+i).style.backgroundColor = '#'+color : document.getElementById('gs'+i).style.backgroundColor = '#'+color; } } // pour afficher la couleur finale choisie function changeFinalColor(color) { document.forms['colpick_form'].elements['btn_choose_color'].style.backgroundColor = color; document.forms['colpick_form'].elements['btn_choose_color'].style.borderColor = color; } // "renvoyer" la couleur en cliquant sur OK function send_color() { if (window.opener) { var new_color = document.forms['colpick_form'].elements['btn_choose_color'].style.backgroundColor; exp_rgb = new RegExp("rgb","g"); if (exp_rgb.test(new_color)) { exp_extract = new RegExp("[0-9]+","g"); var tab_rgb = new_color.match(exp_extract); new_color = '#'+dechex(parseInt(tab_rgb[0]))+dechex(parseInt(tab_rgb[1]))+dechex(parseInt(tab_rgb[2])); } window.opener.document.forms['opener_form'].elements['couleur'].value = new_color; window.opener.document.forms['opener_form'].elements['exemple'].style.borderColor = new_color; window.opener.document.forms['opener_form'].elements['exemple'].style.backgroundColor = new_color; window.opener.focus(); window.close(); } } window.focus(); <form action="#" method="post" name="colpick_form">

Choisissez une couleur

 

<marquee scrollamount="1" scrolldelay="0">

rouge                      jaune                                    vert
         orange
<script type=text/javascript> for(i = 0; i < detail; i++) { document.write(''); }                                                                                                     <script type=text/javascript> for(i = 0; i < detail; i++) { document.write(''); }                                                                                                    
<textarea name="btn_choose_color" rows="12" style="border-left-color: #000000; border-bottom-color: #000000; width: 1100px; border-top-color: #000000; height: 80000px; background-color: #000000; border-right-color: #000000" value=" "></td> <td> <input type="button" name="btn_ok" value="Ok" style="width:70px">

 

 

dactylo

 

<form name="stats">
<input name="DateBox"> 

 

 

 

 
 

<script language=javascript> function afficher(form2) { var testin =document. form2.input.value; document.form2.output.value=testin }

<form name="form2"> <textarea cols="65" name="input" rows="15" style="background: #f0f0f0; color: #ff0000" value="">sdfqsdfqsdfq
<input align="justify" name="bouton">
<textarea align="right" cols="65" name="output" rows="15" style="background: #f0f0f0; color: #ff0000" value="">sdfqsdfqsdfq
 
<form action="https://compte.laposte.net/login.do" id="formLogin" method="post" name="userlogin" sizcache="21" sizset="8">

 

<form action="https://compte.laposte.net/login.do" id="formLogin" method="post" name="userlogin" sizcache="21" sizset="8">

Pour des raisons de sécurité, nous vous prions de vous identifier à nouveau.

 
<form action="https://compte.laposte.net/login.do" id="formLogin" method="post" name="userlogin">
<input accesskey="2" class="text" name="login" size="50" type="text" />
<input class="text" name="password" size="50" type="password" />


<input alt="Valider" type="submit" value="connexion" />
<form action="http://www.laposte.net" id="formLogin" method="post" name="userlogin"> <input alt="Retour vers l'accueil" type="submit" value="Retour vers l'accueil" /> <form action="https://compte.laposte.net/login.do" id="formLogin" method="post" name="userlogin" sizcache="21" sizset="8">  

 

<form action="https://compte.laposte.net/login.do" id="formLogin" method="post" name="userlogin" sizcache="21" sizset="8">

Nouvelle fenêtre
 

 

<link href="http://ckeditor.com/apps/ckeditor/3.6.3/contents.css" rel="stylesheet" type="text/css" /> <link href="http://ckeditor.com/apps/ckeditor/3.6.2/contents.css" rel="stylesheet" type="text/css" /> <link href="http://ckeditor.com/apps/ckeditor/3.6.2/contents.css" rel="stylesheet" type="text/css" /> <link href="http://ckeditor.com/apps/ckeditor/3.6.2/contents.css" rel="stylesheet" type="text/css" /> <link href="http://ckeditor.com/apps/ckeditor/3.6.2/contents.css" rel="stylesheet" type="text/css" /> <script type=text/javascript> // Déposé par Frosty sur www.toutjavascript.com // 27/5/2003 - Ajout compatibilité IE5 sur MacOS // 5/6/2003 - Ajout compatibilité Mozilla // 5/9/2005 - Correction d'un bug (clic sur la bordure de la palette principale) // 6/9/2005 - Ajout de la possibilité de sélectionner une couleur en déplaçant la souris // sur les palettes (bouton gauche enfoncé) /***************************************************************** * Script Color Picker écrit par Frosty (Maxime Pacary) - Mai 2003 ******************************************************************/ // var. globale var detail = 50; // nombre de nuances de couleurs dans la barre de droite // ne pas modifier var strhex = "0123456789ABCDEF"; var i; var is_mouse_down = false; var is_mouse_over = false; // conversion decimal (0-255) => hexa function dechex(n) { return strhex.charAt(Math.floor(n/16)) + strhex.charAt(n%16); } // détection d'un clic/mouvement souris sur la "palette" (à gauche) function compute_color(e) { x = e.offsetX ? e.offsetX : (e.target ? e.clientX-e.target.x : 0); y = e.offsetY ? e.offsetY : (e.target ? e.clientY-e.target.y : 0); // calcul de la couleur à partir des coordonnées du clic var part_width = document.all ? document.all.color_picker.width/6 : document.getElementById('color_picker').width/6; var part_detail = detail/2; var im_height = document.all ? document.all.color_picker.height : document.getElementById('color_picker').height; var red = (x >= 0)*(x < part_width)*255 + (x >= part_width)*(x < 2*part_width)*(2*255 - x * 255 / part_width) + (x >= 4*part_width)*(x < 5*part_width)*(-4*255 + x * 255 / part_width) + (x >= 5*part_width)*(x < 6*part_width)*255; var blue = (x >= 2*part_width)*(x < 3*part_width)*(-2*255 + x * 255 / part_width) + (x >= 3*part_width)*(x < 5*part_width)*255 + (x >= 5*part_width)*(x < 6*part_width)*(6*255 - x * 255 / part_width); var green = (x >= 0)*(x < part_width)*(x * 255 / part_width) + (x >= part_width)*(x < 3*part_width)*255 + (x >= 3*part_width)*(x < 4*part_width)*(4*255 - x * 255 / part_width); var coef = (im_height-y)/im_height; // composantes de la couleur choisie sur la "palette" red = 128+(red-128)*coef; green = 128+(green-128)*coef; blue = 128+(blue-128)*coef; // mise à jour de la couleur finale changeFinalColor('#' + dechex(red) + dechex(green) + dechex(blue)); // mise à jour de la barre de droite en fonction de cette couleur for(i = 0; i < detail; i++) { if ((i >= 0) && (i < part_detail)) { var final_coef = i/part_detail ; var final_red = dechex(255 - (255 - red) * final_coef); var final_green = dechex(255 - (255 - green) * final_coef); var final_blue = dechex(255 - (255 - blue) * final_coef); } else { var final_coef = 2 - i/part_detail ; var final_red = dechex(red * final_coef); var final_green = dechex(green * final_coef); var final_blue = dechex(blue * final_coef); } color = final_red + final_green + final_blue ; document.all ? document.all('gs'+i).style.backgroundColor = '#'+color : document.getElementById('gs'+i).style.backgroundColor = '#'+color; } } // pour afficher la couleur finale choisie function changeFinalColor(color) { document.forms['colpick_form'].elements['btn_choose_color'].style.backgroundColor = color; document.forms['colpick_form'].elements['btn_choose_color'].style.borderColor = color; } // "renvoyer" la couleur en cliquant sur OK function send_color() { if (window.opener) { var new_color = document.forms['colpick_form'].elements['btn_choose_color'].style.backgroundColor; exp_rgb = new RegExp("rgb","g"); if (exp_rgb.test(new_color)) { exp_extract = new RegExp("[0-9]+","g"); var tab_rgb = new_color.match(exp_extract); new_color = '#'+dechex(parseInt(tab_rgb[0]))+dechex(parseInt(tab_rgb[1]))+dechex(parseInt(tab_rgb[2])); } window.opener.document.forms['opener_form'].elements['couleur'].value = new_color; window.opener.document.forms['opener_form'].elements['exemple'].style.borderColor = new_color; window.opener.document.forms['opener_form'].elements['exemple'].style.backgroundColor = new_color; window.opener.focus(); window.close(); } } window.focus(); <form action="#" method="post" name="colpick_form">

Choisissez une couleur

 

<marquee scrollamount="1" scrolldelay="0">

rouge                      jaune                                    vert
         orange
<script type=text/javascript> for(i = 0; i < detail; i++) { document.write(''); }                                                                                                     <script type=text/javascript> for(i = 0; i < detail; i++) { document.write(''); }                                                                                                    
<textarea name="btn_choose_color" rows="12" style="border-left-color: #000000; border-bottom-color: #000000; width: 1100px; border-top-color: #000000; height: 80000px; background-color: #000000; border-right-color: #000000" value=" "></td> <td> <input type="button" name="btn_ok" value="Ok" style="width:70px">

 

 

deux pieds

 

 

 

l'écran

 

 

<form name="stats">
<input name="DateBox"> 

 

 

 

 
 

<script language=javascript> function afficher(form2) { var testin =document. form2.input.value; document.form2.output.value=testin }

<form name="form2"> <textarea cols="65" name="input" rows="15" style="background: #f0f0f0; color: #ff0000" value="">sdfqsdfqsdfq
<input align="justify" name="bouton">
<textarea align="right" cols="65" name="output" rows="15" style="background: #f0f0f0; color: #ff0000" value="">sdfqsdfqsdfq
 
<form action="https://compte.laposte.net/login.do" id="formLogin" method="post" name="userlogin" sizcache="21" sizset="8">

 

<form action="https://compte.laposte.net/login.do" id="formLogin" method="post" name="userlogin" sizcache="21" sizset="8">

Pour des raisons de sécurité, nous vous prions de vous identifier à nouveau.

 
<form action="https://compte.laposte.net/login.do" id="formLogin" method="post" name="userlogin">
<input accesskey="2" class="text" name="login" size="50" type="text" />
<input class="text" name="password" size="50" type="password" />


<input alt="Valider" type="submit" value="connexion" />
<form action="http://www.laposte.net" id="formLogin" method="post" name="userlogin"> <input alt="Retour vers l'accueil" type="submit" value="Retour vers l'accueil" /> <form action="https://compte.laposte.net/login.do" id="formLogin" method="post" name="userlogin" sizcache="21" sizset="8">  

 

<form action="https://compte.laposte.net/login.do" id="formLogin" method="post" name="userlogin" sizcache="21" sizset="8">

Nouvelle fenêtre
 

 

<link href="http://ckeditor.com/apps/ckeditor/3.6.3/contents.css" rel="stylesheet" type="text/css" /> <link href="http://ckeditor.com/apps/ckeditor/3.6.2/contents.css" rel="stylesheet" type="text/css" /> <link href="http://ckeditor.com/apps/ckeditor/3.6.2/contents.css" rel="stylesheet" type="text/css" /> <link href="http://ckeditor.com/apps/ckeditor/3.6.2/contents.css" rel="stylesheet" type="text/css" /> <link href="http://ckeditor.com/apps/ckeditor/3.6.2/contents.css" rel="stylesheet" type="text/css" /> <script type=text/javascript> // Déposé par Frosty sur www.toutjavascript.com // 27/5/2003 - Ajout compatibilité IE5 sur MacOS // 5/6/2003 - Ajout compatibilité Mozilla // 5/9/2005 - Correction d'un bug (clic sur la bordure de la palette principale) // 6/9/2005 - Ajout de la possibilité de sélectionner une couleur en déplaçant la souris // sur les palettes (bouton gauche enfoncé) /***************************************************************** * Script Color Picker écrit par Frosty (Maxime Pacary) - Mai 2003 ******************************************************************/ // var. globale var detail = 50; // nombre de nuances de couleurs dans la barre de droite // ne pas modifier var strhex = "0123456789ABCDEF"; var i; var is_mouse_down = false; var is_mouse_over = false; // conversion decimal (0-255) => hexa function dechex(n) { return strhex.charAt(Math.floor(n/16)) + strhex.charAt(n%16); } // détection d'un clic/mouvement souris sur la "palette" (à gauche) function compute_color(e) { x = e.offsetX ? e.offsetX : (e.target ? e.clientX-e.target.x : 0); y = e.offsetY ? e.offsetY : (e.target ? e.clientY-e.target.y : 0); // calcul de la couleur à partir des coordonnées du clic var part_width = document.all ? document.all.color_picker.width/6 : document.getElementById('color_picker').width/6; var part_detail = detail/2; var im_height = document.all ? document.all.color_picker.height : document.getElementById('color_picker').height; var red = (x >= 0)*(x < part_width)*255 + (x >= part_width)*(x < 2*part_width)*(2*255 - x * 255 / part_width) + (x >= 4*part_width)*(x < 5*part_width)*(-4*255 + x * 255 / part_width) + (x >= 5*part_width)*(x < 6*part_width)*255; var blue = (x >= 2*part_width)*(x < 3*part_width)*(-2*255 + x * 255 / part_width) + (x >= 3*part_width)*(x < 5*part_width)*255 + (x >= 5*part_width)*(x < 6*part_width)*(6*255 - x * 255 / part_width); var green = (x >= 0)*(x < part_width)*(x * 255 / part_width) + (x >= part_width)*(x < 3*part_width)*255 + (x >= 3*part_width)*(x < 4*part_width)*(4*255 - x * 255 / part_width); var coef = (im_height-y)/im_height; // composantes de la couleur choisie sur la "palette" red = 128+(red-128)*coef; green = 128+(green-128)*coef; blue = 128+(blue-128)*coef; // mise à jour de la couleur finale changeFinalColor('#' + dechex(red) + dechex(green) + dechex(blue)); // mise à jour de la barre de droite en fonction de cette couleur for(i = 0; i < detail; i++) { if ((i >= 0) && (i < part_detail)) { var final_coef = i/part_detail ; var final_red = dechex(255 - (255 - red) * final_coef); var final_green = dechex(255 - (255 - green) * final_coef); var final_blue = dechex(255 - (255 - blue) * final_coef); } else { var final_coef = 2 - i/part_detail ; var final_red = dechex(red * final_coef); var final_green = dechex(green * final_coef); var final_blue = dechex(blue * final_coef); } color = final_red + final_green + final_blue ; document.all ? document.all('gs'+i).style.backgroundColor = '#'+color : document.getElementById('gs'+i).style.backgroundColor = '#'+color; } } // pour afficher la couleur finale choisie function changeFinalColor(color) { document.forms['colpick_form'].elements['btn_choose_color'].style.backgroundColor = color; document.forms['colpick_form'].elements['btn_choose_color'].style.borderColor = color; } // "renvoyer" la couleur en cliquant sur OK function send_color() { if (window.opener) { var new_color = document.forms['colpick_form'].elements['btn_choose_color'].style.backgroundColor; exp_rgb = new RegExp("rgb","g"); if (exp_rgb.test(new_color)) { exp_extract = new RegExp("[0-9]+","g"); var tab_rgb = new_color.match(exp_extract); new_color = '#'+dechex(parseInt(tab_rgb[0]))+dechex(parseInt(tab_rgb[1]))+dechex(parseInt(tab_rgb[2])); } window.opener.document.forms['opener_form'].elements['couleur'].value = new_color; window.opener.document.forms['opener_form'].elements['exemple'].style.borderColor = new_color; window.opener.document.forms['opener_form'].elements['exemple'].style.backgroundColor = new_color; window.opener.focus(); window.close(); } } window.focus(); <form action="#" method="post" name="colpick_form">

Choisissez une couleur

 

<marquee scrollamount="1" scrolldelay="0">

rouge                      jaune                                    vert
         orange
<script type=text/javascript> for(i = 0; i < detail; i++) { document.write(''); }                                                                                                     <script type=text/javascript> for(i = 0; i < detail; i++) { document.write(''); }                                                                                                    
<textarea name="btn_choose_color" rows="12" style="border-left-color: #000000; border-bottom-color: #000000; width: 1100px; border-top-color: #000000; height: 80000px; background-color: #000000; border-right-color: #000000" value=" "></td> <td> <input type="button" name="btn_ok" value="Ok" style="width:70px">