Cap-Eveil
MagicMaman
Ma TV pratique
Vos questions de parents
Portage Kangourou de ventre pour bébé
Notes / UBUNTU LINUX, Informatique, Électronique, région Centre, loisirs...
mardi 23 décembre 2014
mardi 16 décembre 2014
#Curseurs #souris #icones
60gp.ovh.net/~toutla/graph/curseur.html
AlexPeattie
Auroras.free.fr/curseurs-animes.htm
Brankic1979
Clicpartout.com/curseurs/curseurs-animes-divers.php
Curseurs à gogo
Cursors-4u
DessinsOnWeb
DeviantArt
Dribbble
elements.envato.com/graphics/icons
Emocool
Enfuzed
FlatIcon
Font-Awesome
FontFabric
Fonts2U
Freebiesbug
Gloubiweb
GoSquared
Graphichive
IcoJam
IconExperience
IconFinder
IconMelon
IconShock
Juraspeleo.com/divers/windows/curseurs/curseurs.htm
Lecoffredecasea.com/services/index.php?page=curseurs
Metro UI
ModernUIIcons
MoveIcon
MrIcons
Noos.org/bureau/icones/
Noupe
Palaiszelda.com/economiseurs_icones.php
Picons.me
Pixeden
PremiumPixel
SmashingMagazine
Speckyboy
Totally Free Cursors
Toucharger.com/images/curseurs/
Toutla.com/ressource-graphique/telechargement-curseurs-animes
UseIconic
Winportal.fr/s/curseurs-pour-souris
2. Héberger le curseur quelque part
3. Changer la ligne body dans le css:
body { margin:0px; font-family: Verdana, Helvetica, Arial, sans-serif; font-size:x-small; background: #000000; color: #000000; cursor:url("http://.../exemple.cur"); }
ou
ou après body
<span style="cursor:url(moncurseur.cur),auto"</span>
ou
Un exemple en CSS placé dans une " div " d'une page de votre site :
Note : En fait, il est très simple de se rappeler toutes ces propriétés d'un coup.
n, s, e, w correspondent à nord, sud, est, ouest, c'est-à-dire haut, bas, droite, gauche.
Il suffit d'indiquer la direction vers laquelle doit pointer le curseur, suivi bien sûr de "-resize".
un curseur :
une animation :
dans un css rajouter :
a:hover.moncurseur {
cursor: url(moncurseur.cur);
}
Dans le code source CSS de votre page web, ajoutez la ligne suivante :
CSS
Html
chezdan8gdg1.blogspot.fr/p/curseur.html
codes-sources.commentcamarche.net/source/43072-curseur-dynamique
curseursgogo.free.fr/installation.htm
developer.mozilla.org/fr/docs/Web/CSS/cursor
www.javascriptkit.com/dhtmltutors/csscursors.shtml#rightcolumn
jquery.developpeur-web2.com/documentation/evenements.php
tecfa.unige.ch/themes/FAQ-FL/rollover/rollover.html
www.tomsguide.fr/forum/id-555063/html-changer-image-survol-souris.html#4094604
yves.marsal.free.fr/myoast03.htm
www.w3.org/TR/CSS2/ui.html#cursor-props
Default représente le curseur par défaut c'est à dire la flèche classique de votre souris.
Vous pouvez le modifier par :
- text : le curseur "traitement de texte", idéal pour les littéraires.
- crosshair : un curseur en forme de croix, idéal pour les matheux.
- pointer : curseur en forme de main.
- Move : curseur de déplacement.
- Wait : curseur en forme de sablier.
- progress : curseur par défaut associé au curseur Wait.
- help : curseur avec un point d'interrogation.
- URL() : curseur en forme de stylo.
Quelques exemples de curseurs :
<script type="text/javascript" src="http://www.jimdo.com/l/usersnippets/snowfall.min.js">
</script>
Curseur : renne blanc
<style type="text/css">
body, a:hover {cursor: url(http://www.jimdo.com/l/usersnippets/rentier.cur), url(http://www.jimdo.com/l/usersnippets/rentier.png), auto !important;}
</style>
Curseur : flocons de neige
<script type="text/javascript" src="http://www.jimdo.com/l/usersnippets/snowcursor.min.js">
</script>
Curseur : renne marron
<style type="text/css">
body, a:hover {cursor: url(http://www.jimdo.com/l/usersnippets/rentier2.cur), url(http://www.jimdo.com/l/usersnippets/rentier2.png), auto !important;}
</style>
Curseur : étoiles et flocon de neige
<script type="text/javascript" src="http://www.jimdo.com/l/usersnippets/snowcursor.min.js">
</script>
<style type="text/css">
body, a:hover {cursor: url(http://www.jimdo.com/l/usersnippets/snowcurser.cur), url(http://www.jimdo.com/l/usersnippets/snowcurser.png), auto !important;}
</style>
- Image qui suit le curseur en javascript :
<script type="text/javascript">
var x = 0;
var y = 0;
if (document.getElementById)
{
if(navigator.appName.substring(0,3) == "Net")
document.captureEvents(Event.MOUSEMOVE);
document.onmousemove = Pos_Souris;
window.onload = Bouge_Image;
}
function Pos_Souris(e)
{
x = (navigator.appName.substring(0,3) == "Net") ? e.pageX : event.x+document.body.scrollLeft;
y = (navigator.appName.substring(0,3) == "Net") ? e.pageY : event.y+document.body.scrollTop;
}
posX = 0;
posY = 0;
anim = true;
oldpos = "image.gif";
function Bouge_Image()
{
if (document.getElementById && anim)
{
posX = posX+(((x-posX)+20)/15);
posY = posY+(((y-posY)+20)/15);
if(posX<x)
newpos='';
else
newpos='image.gif';
if(newpos!=oldpos)
{
document.tete.src=newpos;
oldpos=newpos;
}
document.getElementById("teteronde").style.top = posY+"px";
document.getElementById("teteronde").style.left = posX+"px";
tempo = setTimeout("Bouge_Image()", 15)
}
}
if(document.getElementById)
{
document.write('<div id="teteronde" style="position: absolute">');
document.write('<a href="#" onClick="anim=false;document.getElementById(\'teteronde\').style.visibility = \'hidden\';return(false)">');
document.write('<img src="" style="border:0px" name="tete" alt="Cliquez ici pour faire disparaître" />');
document.write('</a>');
document.write('</div>');
}
</script>
Programmes de curseurs pour Ubuntu :
Programmes de curseurs pour Windows :
AlexPeattie
Auroras.free.fr/curseurs-animes.htm
Brankic1979
Clicpartout.com/curseurs/curseurs-animes-divers.php
Curseurs à gogo
Cursors-4u
DessinsOnWeb
DeviantArt
Dribbble
elements.envato.com/graphics/icons
Emocool
Enfuzed
FlatIcon
Font-Awesome
FontFabric
Fonts2U
Freebiesbug
Gloubiweb
GoSquared
Graphichive
IcoJam
IconExperience
IconFinder
IconMelon
IconShock
Juraspeleo.com/divers/windows/curseurs/curseurs.htm
Lecoffredecasea.com/services/index.php?page=curseurs
Metro UI
ModernUIIcons
MoveIcon
MrIcons
Noos.org/bureau/icones/
Noupe
Palaiszelda.com/economiseurs_icones.php
Picons.me
Pixeden
PremiumPixel
SmashingMagazine
Speckyboy
Totally Free Cursors
Toucharger.com/images/curseurs/
Toutla.com/ressource-graphique/telechargement-curseurs-animes
UseIconic
Winportal.fr/s/curseurs-pour-souris
Pages web :
1. Choisir un curseur (extension .cur ou .ani uniquement !!!)2. Héberger le curseur quelque part
3. Changer la ligne body dans le css:
body { margin:0px; font-family: Verdana, Helvetica, Arial, sans-serif; font-size:x-small; background: #000000; color: #000000; cursor:url("http://.../exemple.cur"); }
ou
<style type="text/css">
body {cursor: url(adresse http de votre curseur); }
</style>
ou après body
<span style="cursor:url(moncurseur.cur),auto"</span>
ou
body{
cursor: crosshair;
}
img{
cursor: wait;
}
a:link{
cursor: pointer;
}
ou<p onmouseover="this.style.cursor='help'"> exemple </p>
cursor: url('votre_curseur_perso.cur'), pointer;
Ex:
cursor: url("images/cursor.png"), pointer;Sur une image :document.body.style.cursor = "url('ton_image.gif')";
<img style="cursor:pointer;" src=image.png" alt="image" />
OU
<A HREF="http://distributions.free.fr" onmouseover="f1.src='images/bouton2.GIF'" onmouseout="f1.src='images/bouton1.GIF'"><IMG SRC="images/bouton1.GIF" ALT="Page d'accueil" WIDTH=100 HEIGHT=39 BORDER=0 ALIGN=bottom name=f1 onload="tempImg=new Image(100,39);tempImg.src='images/bouton2.GIF'"></A>
OU
<A HREF="http://distributions.free.fr" onmouseover="f1.src='images/bouton2.GIF'" onmouseout="f1.src='images/bouton1.GIF'"><IMG SRC="images/bouton1.GIF" ALT="Page d'accueil" WIDTH=100 HEIGHT=39 BORDER=0 ALIGN=bottom name=f1 onload="tempImg=new Image(100,39);tempImg.src='images/bouton2.GIF'"></A>
Exemple de code :
<html><head>
<script type="text/javascript">
function sourisOn() { document.images["unimage"].src="image2.gif" }
function sourisOff() { document.images["unimage"].src="image3.gif"}
</SCRIPT>
</HEAD><BODY>
<A HREF="#" onmouseOver="sourisOn();" onmouseOut="sourisOff();">
<IMG SRC="image1.gif" name="unimage" border=0></A>
</body></html>
Un exemple en CSS placé dans une " div " d'une page de votre site :
<html><head><title>ma apge avec un autre curseur</title>
</head><body bgcolor="#FFFFFF" text="#000000">
<div style="background-color:#F8F8FF; padding:10pt; border:thin solid black; width:100%; cursor:crosshair;">
<p>Ceci est une DIV avec la mention <b>cursor:crosshair</b>.
Passez avec la souris sur ce passage...</p></div>
<!--etc... la suite de ma page -->
</body></html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Changer le curseur(la souris) par une image ou curseurs proposés en css</title>
<style type="text/css">
.curseur_normal
{
cursor:default;
}
.curseur_auto
{
cursor:auto;
}
.curseur_croix
{
cursor:crosshair;
}
.curseur_aide
{
cursor:help;
}
.curseur_move
{
cursor:move;
}
.curseur_texte
{
cursor:text;
}
.curseur_attente
{
cursor:wait;
}
.curseur_pointer
{
cursor:pointer;
}
.curseur_img
{
cursor:url('curseur.gif'), default;
}
.curseur_n
{
cursor:n-resize;
}
.curseur_s
{
cursor:s-resize;
}
.curseur_e
{
cursor:e-resize;
}
.curseur_w
{
cursor:w-resize;
}
.curseur_ne
{
cursor:ne-resize;
}
.curseur_nw
{
cursor:nw-resize;
}
.curseur_se
{
cursor:se-resize;
}
.curseur_sw
{
cursor:sw-resize;
}
</style>
</head>
<body>
<div>
<em>(survolez les lignes pour voir les effets)</em>
<h1>Général</h1>
<span class="curseur_normal"><strong>Curseur normal:</strong> cursor:default;</span><br />
<span class="curseur_auto"><strong>Curseur automatique:</strong> cursor:auto;</span><br />
<span class="curseur_croix"><strong>Curseur croix:</strong> cursor:crosshair;</span><br />
<span class="curseur_aide"><strong>Curseur aide:</strong> cursor:help;</span><br />
<span class="curseur_move"><strong>Curseur déplacement:</strong> cursor:move;</span><br />
<span class="curseur_pointer"><strong>Curseur main(pointeur):</strong> cursor:pointer;</span><br />
<span class="curseur_texte"><strong>Curseur texte:</strong> cursor:text;</span><br />
<span class="curseur_attente"><strong>Curseur attente(sablier):</strong> cursor:wait;</span><br />
<span class="curseur_img"><strong>Curseur image:</strong> cursor:url('adresse_de_limage'), default;</span>
<h1>Redimention</h1>
<span class="curseur_n"><strong>Curseur redimetion nord(haut):</strong> cursor:n-resize;</span><br />
<span class="curseur_s"><strong>Curseur redimetion sud(bas):</strong> cursor:s-resize;</span><br />
<span class="curseur_e"><strong>Curseur redimetion est(droite):</strong> cursor:e-resize;</span><br />
<span class="curseur_w"><strong>Curseur redimetion ouest(gauche):</strong> cursor:w-resize;</span><br />
<span class="curseur_ne"><strong>Curseur redimetion nord est(haut droite):</strong> cursor:ne-resize;</span><br />
<span class="curseur_nw"><strong>Curseur redimetion nord ouest(haut gauche):</strong> cursor:nw-resize;</span><br />
<span class="curseur_se"><strong>Curseur redimetion sud est(bas droite):</strong> cursor:se-resize;</span><br />
<span class="curseur_sw"><strong>Curseur redimetion sud ouest(bas gauche):</strong> cursor:sw-resize;</span><br />
<br />
<strong><em>Remarques:</em></strong><br />
<ol>
<li>Les curseurs images ne fonctionnes pas sous Netscape 6.x et IE 5.x</li>
<li>n-resize = s-resize</li>
<li>e-resize = w-resize</li>
<li>ne-resize = se-resize</li>
<li>nw-resize = sw-resize</li>
</ol>
</div>
</body>
</html>
-Image qui suit la souris :<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Image qui suit la souris</title>
<script type="text/javascript">
//<!--
document.onmousemove = suitsouris;
function suitsouris(evenement)
{
if(navigator.appName=="Microsoft Internet Explorer")
{
var x = event.x+document.body.scrollLeft;
var y = event.y+document.body.scrollTop;
}
else
{
var x = evenement.pageX;
var y = evenement.pageY;
}
document.getElementById("image_suit_souris").style.left = (x+1)+'px';
document.getElementById("image_suit_souris").style.top = (y+1)+'px';
}
//-->
</script>
</head>
<body>
<img src="image.png" alt="Image qui suit la souris" id="image_suit_souris" style="position:absolute;display:block;z-index:5;" />
</body>
</html>
Les navigateurs utilisent :| Internet Explorer | 6.0 | *.cur *.ani |
| Firefox (Gecko) | Windows and Linux 1.5 (1.8) | *.cur *.png *.gif *.jpg |
| Firefox (Gecko) | 4.0 (2.0) | *.cur *.png *.gif *.jpg *.svg |
| Safari (Webkit) | 3.0 (522-523) | *.cur *.png *.gif *.jpg |
Acceptés par tous les navigateurs
- auto : Aspect identique à celui du curseur par défaut sur la balise qui possède l'attribut, ne change rien.
- crosshair : Curseur en forme de croix.
- default : Curseur par défaut du navigateur.
- help : Curseur d'aide.
- move : Curseur de déplacement.
- pointer : Curseur en forme de main avec le doigt déplié.
- progress : Curseur de progression.
- text : Curseur d'édition de texte.
- wait : Curseur d'attente
Curseurs de redimensionnement
- n-resize : Curseur de redimensionnement bas vers haut.
- s-resize : Curseur de redimensionnement haut vers bas.
- e-resize : Curseur de redimensionnement gauche vers droite.
- w-resize : Curseur de redimensionnement droite vers gauche.
- ne-resize : Curseur de redimensionnement bas-gauche vers haut-droite.
- nw-resize : Curseur de redimensionnement bas-droite vers haut-gauche.
- se-resize : Curseur de redimensionnement haut-gauche vers bas-droite.
- sw-resize : Curseur de redimensionnement haut-droite vers bas-gauche.
Note : En fait, il est très simple de se rappeler toutes ces propriétés d'un coup.
n, s, e, w correspondent à nord, sud, est, ouest, c'est-à-dire haut, bas, droite, gauche.
Il suffit d'indiquer la direction vers laquelle doit pointer le curseur, suivi bien sûr de "-resize".
Non accepté par tous les navigateurs
Firefox et Opera, entre autres, ignorent ces directives.- inherit : Même curseur que la balise parente.
- not-allowed : Curseur en forme de rond barré.
- no-drop : Curseur en forme de main avec le doigt déplié et un rond barré.
- col-resize : Curseur fait de deux traits verticaux avec une flèche de chaque coté.
- row-resize : Curseur fait de deux traits horizontaux avec une flèche de chaque côté.
<style type="text/css">
Body {
cursor:url("http://tonsite.com/image-du-curseur.gif");
}
</style>
Convertir un .gif en .cur avec ImageMagick
convert mon_fichier.png mon_fichier.curun curseur :
<style type="text/css">
Body {
cursor:url("http://tonsite.com/dossier-image/image-du-curseur.cur");
}
</style>
une animation :
<style type="text/css">
Body {
cursor:url("http://tonsite.com/dossier-image/image-du-curseur.ani");
}
</style>
dans un css rajouter :
a:hover.moncurseur {
cursor: url(moncurseur.cur);
}
Dans le code source CSS de votre page web, ajoutez la ligne suivante :
cursor: default
* Exemple / Démo :
http://www.ajaxblender.com/article-sou [...] rs/index.html Javascript :
<script type=”text/javascript”>$(document).ready(function(){$(’#test-area’).mouseout(function(){$(’#mycursor’).hide();return false;});$(’#test-area’).mouseenter(function(){$(’#mycursor’).show();return false;});$(’#test-area’).mousemove(function(e){$(’#mycursor’).css(’left’, e.clientX – 20).css(’top’, e.clientY + 7);});});</script> |
CSS
#test-area {height: 200px;border: 3px dashed #CCCCCC;background: #FFFFFF;padding: 20px;cursor: url(./blank.cur), none;}#mycursor {cursor: none;width: 97px;height: 137px;background: url(”/article-sources/images/pointer-cursor.gif”) no-repeat left top;position: absolute;display: none;top: 0;left: 0;z-index: 10000;} |
Html
<div id=”test-area”>Move mouse over this area.</div><div id=”mycursor”></div> |
----
blogger-pourlesnuls.blogspot.fr/2012/08/changer-curseur-de-la-souris-sur-blogger.html
chezdan8gdg1.blogspot.fr/p/curseur.html
codes-sources.commentcamarche.net/source/43072-curseur-dynamique
curseursgogo.free.fr/installation.htm
developer.mozilla.org/fr/docs/Web/CSS/cursor
www.javascriptkit.com/dhtmltutors/csscursors.shtml#rightcolumn
jquery.developpeur-web2.com/documentation/evenements.php
tecfa.unige.ch/themes/FAQ-FL/rollover/rollover.html
www.tomsguide.fr/forum/id-555063/html-changer-image-survol-souris.html#4094604
yves.marsal.free.fr/myoast03.htm
www.w3.org/TR/CSS2/ui.html#cursor-props
---
Les événements
Souris et DIV: gestion des évènements HTML
Une pluie d'étoiles qui suit votre curseur
Souris et DIV: gestion des évènements HTML
Une pluie d'étoiles qui suit votre curseur
Vous pouvez le modifier par :
- text : le curseur "traitement de texte", idéal pour les littéraires.
- crosshair : un curseur en forme de croix, idéal pour les matheux.
- pointer : curseur en forme de main.
- Move : curseur de déplacement.
- Wait : curseur en forme de sablier.
- progress : curseur par défaut associé au curseur Wait.
- help : curseur avec un point d'interrogation.
- URL() : curseur en forme de stylo.
Quelques exemples de curseurs :

- auto : curseur normal
- default : curseur standard
- crosshair : croix
- pointer : flèche
- move : croix avec flèches symbolisant la possibilité de déplacer l’élément
- n-resize : flèche pointant vers le haut (n : nord)
- ne-resize : flèche pointant vers le haut à droite (ne : nord-est)
- e-resize : flèche pointant vers la droite (e : est)
- se-resize : flèche pointant vers le bas à droite (se : sud-est)
- s-resize : flèche pointant vers le bas (s : sud)
- sw-resize : flèche pointant vers le bas à gauche (sw : sud-ouest)
- w-resize : flèche pointant vers la gauche (w : ouest)
- nw-resize : flèche pointant vers le haut à gauche (nw : nord-ouest)
- text : point d’insertion texte
- wait : attente (montre, ....)
- help : icone d’aide
- url([fichier]) : version graphique du curseur
<script type="text/javascript" src="http://www.jimdo.com/l/usersnippets/snowfall.min.js">
</script>
Curseur : renne blanc
<style type="text/css">
body, a:hover {cursor: url(http://www.jimdo.com/l/usersnippets/rentier.cur), url(http://www.jimdo.com/l/usersnippets/rentier.png), auto !important;}
</style>
Curseur : flocons de neige
<script type="text/javascript" src="http://www.jimdo.com/l/usersnippets/snowcursor.min.js">
</script>
Curseur : renne marron
<style type="text/css">
body, a:hover {cursor: url(http://www.jimdo.com/l/usersnippets/rentier2.cur), url(http://www.jimdo.com/l/usersnippets/rentier2.png), auto !important;}
</style>
Curseur : étoiles et flocon de neige
<script type="text/javascript" src="http://www.jimdo.com/l/usersnippets/snowcursor.min.js">
</script>
<style type="text/css">
body, a:hover {cursor: url(http://www.jimdo.com/l/usersnippets/snowcurser.cur), url(http://www.jimdo.com/l/usersnippets/snowcurser.png), auto !important;}
</style>
Sapins blancs :
<style type="text/css">
body .hr {
background: url(http://www.jimdo.com/l/usersnippets/hr-snow-white.png);
background-position:right;
border: 0;
height: 47px;
}
</style>
Sapins verts :
<style type="text/css">
body .hr {
background: url(http://www.jimdo.com/l/usersnippets/hr-snow-green.png);
background-position:right;
border: 0;
height: 47px;
}
</style>
ou
<script type="text/javascript" src="http://contes-de-web.fr/js/pluiedetoiles.js"></script>
ou
<style type="text/css">
body .hr {
background: url(http://www.jimdo.com/l/usersnippets/hr-snow-white.png);
background-position:right;
border: 0;
height: 47px;
}
</style>
Sapins verts :
<style type="text/css">
body .hr {
background: url(http://www.jimdo.com/l/usersnippets/hr-snow-green.png);
background-position:right;
border: 0;
height: 47px;
}
</style>
ou
<script type="text/javascript" src="http://contes-de-web.fr/js/pluiedetoiles.js"></script>
ou
$(function() {
$.getScript('http://www.aht.li/2266817/pluie-etoiles.js');
});
- Image qui suit le curseur en javascript :
<script type="text/javascript">
var x = 0;
var y = 0;
if (document.getElementById)
{
if(navigator.appName.substring(0,3) == "Net")
document.captureEvents(Event.MOUSEMOVE);
document.onmousemove = Pos_Souris;
window.onload = Bouge_Image;
}
function Pos_Souris(e)
{
x = (navigator.appName.substring(0,3) == "Net") ? e.pageX : event.x+document.body.scrollLeft;
y = (navigator.appName.substring(0,3) == "Net") ? e.pageY : event.y+document.body.scrollTop;
}
posX = 0;
posY = 0;
anim = true;
oldpos = "image.gif";
function Bouge_Image()
{
if (document.getElementById && anim)
{
posX = posX+(((x-posX)+20)/15);
posY = posY+(((y-posY)+20)/15);
if(posX<x)
newpos='';
else
newpos='image.gif';
if(newpos!=oldpos)
{
document.tete.src=newpos;
oldpos=newpos;
}
document.getElementById("teteronde").style.top = posY+"px";
document.getElementById("teteronde").style.left = posX+"px";
tempo = setTimeout("Bouge_Image()", 15)
}
}
if(document.getElementById)
{
document.write('<div id="teteronde" style="position: absolute">');
document.write('<a href="#" onClick="anim=false;document.getElementById(\'teteronde\').style.visibility = \'hidden\';return(false)">');
document.write('<img src="" style="border:0px" name="tete" alt="Cliquez ici pour faire disparaître" />');
document.write('</a>');
document.write('</div>');
}
</script>
Programmes de curseurs pour Ubuntu :
sudo apt-get install gcursorProgrammes de curseurs pour Windows :
www.toucharger.com/windows/personnalisation-de-l-ordinateur/curseursComment changer les icônes des dossiers dans la barre de lancement rapide Ubuntu.Tuto personnaliser
lundi 15 décembre 2014
#Telephone #portable #smartphone
Chargeurs design pour smartphones : www.accoo.fr
Code IMEI :
Comme si vous alliez passer un appel, composez le *#06#.Masquer son numéro :
Composez le # 31#, puis le numéro. (Masquer ponctuellement)Masquer systématiquement son numéro : #31#
Montrer ponctuellement son numéro au destinataire : *31#numéroappelé
Annuler le masquage systématique de son numéro : *31#
Consulter l'état : *#31#
Pour afficher son numéro :
Composez *31# Le tout suivi du numéro que l'on veut joindre.Changer le code PIN : **04*ancienPIN*nouveauPIN*nouveauPIN#
Débloquer le code PIN : **05*PUK*nouveauPIN*nouveauPIN#
Changer le code PIN 2 : **042*ancienPIN2*nouveauPIN2*nouveauPIN2#
Débloquer le code PIN 2 : **052*PUK2*nouveauPIN2*nouveauPIN2#
Signal d’appel :
Activer : *43#Désactiver : #43#
Consulter l'état : *#43#
Numéros entrants :
Afficher les numéros des appelants : *30#Masquer les numéros des appelants : #30#
Consulter l'état : *#30#
Autres :
Les codes USSD et GSM utiles
Pour Free.fr :
« Point d’accès MMS » :
Nom de connexion : mmsfree
Porteuse de données : Données par paquets
Nom du point d’accès : mmsfree
Nom utilisateur : Aucun
Mot de passe : Non
Mot de passe : *** (ne rien toucher)
Authentification : Sécurisée
Page de démarrage : http://mms.free.fr
Utiliser le point d’accès : Automatiquement
"Configuration SMS" :
Menu » › « Messagerie » › « Options » › « Paramètres » › « SMS » › « Centre de messagerie »
Free SMSC : +33695000695
Pour Free.fr :
« Point d’accès MMS » :
Nom de connexion : mmsfree
Porteuse de données : Données par paquets
Nom du point d’accès : mmsfree
Nom utilisateur : Aucun
Mot de passe : Non
Mot de passe : *** (ne rien toucher)
Authentification : Sécurisée
Page de démarrage : http://mms.free.fr
Utiliser le point d’accès : Automatiquement
"Configuration SMS" :
Menu » › « Messagerie » › « Options » › « Paramètres » › « SMS » › « Centre de messagerie »
Free SMSC : +33695000695
Internet & Satellite
*Comparatif des offres satellite Ariase
Adista - @adistafranceAdista Satelink
Alsatis - @Alsatis
Centrex-solutions - @FeoTelecom
Connexion verte - @ConnexionVerte
DSD
EuropaSat - Bigblu - @Europasat_fr
FRANSAT - @fransat
Geosat - @geosat_albi
Infosat-Telecom
Internet par satellite - @internetparsat
Keyyo - @Keyyo_Business
Lysseo - Medialys
Métiers.Internet.GOUV
NordNet - @NordNetOFFICIEL
Ozone - @internetOZONE
SkyDSL
Tooway - @Tooway_fr
Test de bande passante ADSL :
mire.ipadsl.net/speedtestAutres :
www.minorplanetcenter.net/iau/MPEph/MPEph.html
jeudi 4 décembre 2014
#Geolocalisation #SIG
Géolocalisation :
ArcGIS API For Javascript (2)Calculer un temps d'itinéraire
CapCode is a navigation software for sailors for cruising or regatta. - Reads NMEA 183 data (instruments, GPS, AIS). Implements computation of the VMG , tracing on RNC and ENC (S-57) charts. Display the polar on the chart, future position of the ship. Weather information acquired from grib files are also displayed in the navigation view.
developed as an Eclipse RCP in its versions 2.x.x
Données et API Open Source MaxMindGeoIP2 Downloadable databases
École Nationale des Sciences Géographiques
GeoIP2Javascript
GeoIP2Javascript Tutorial
GeoIP Legacy CSV databases
GeoIP2 Localisation de votre IP
Geolib une librairie dédiée à la geolocalisation
Géolocalisation html5 /AlsaCréation
Geolocalisez-vos-visiteurs-grace-a-leur-ip
Geocoder PHP
GeoJSON
GeoNetwork
GEOrgET provides several tools for organising and editing GoogleEarth KML files productively:
*Convert NMEA to KML, import and export GPX
*Converts DT2 elevation data to HGT, fills voids
*Produce congruent Points from an edited Path
*Add a timezone; change the starting time of a Path
*Reverse a Path and its Points
*Join Paths
*Add photo locations to KML files
*Make images (e.g. colour-coded, contoured and shaded maps, and profile, slope, speed plots)
*Maps contain special features (e.g. waypoints, rivers, lakes, shorelines cities/towns)
*Make custom GoogleEarth tours (customisable speed, height, angle, direction, bearings, bearing tactics)
*Customise settings (primary and favourite timezones, photo directory, database)
Packaged with a complete database of timezones and cities.
Requires PHP and MySQL to run; images will only be produced if ImageMagick for PHP is also installed. SRTM files are necessary for colouring maps, profile and slope plots.
GG-Tracker
GPS File Viewer
Leaflet js
Mapigniter2
Mapkit.io/editor
Mushrooms /PHP
MyTourbook
OpenSeaMap's goal is to add nautical and tourism information a sailor could be interested in to OSM (OpenStreetMap) and to present it in a pleasing way. Those include beacons, buoys and other seamark and port information.
PuntoGPS
QtVIm
Autres :
BRGM
EsriFrance
Galigeo
libLAS LiDAR Data Access
Mapbox.com/mapbox.js/plugins
OSGeo-Live
Sites & Applis :
GeoMag
HERE we go / Android
KMZ, KML, GPX & TCX Track Viewer / Windows
Pictures_on_map / Windows
Pictures_on_map / Windows
Portail SIG
Rome2Rio /Android
SIG & Territoires
YouMaps
Geoportail.gouv.fr
GeoVelo
MyGPSFiles
My-map
QuelleRoute
RouteXL
Vianavigo
Rome2Rio /Android
SIG & Territoires
YouMaps
Itinéraires :
Bison FutéGeoportail.gouv.fr
GeoVelo
MyGPSFiles
My-map
QuelleRoute
RouteXL
Vianavigo
Indiquez dans cette partie vos coordonnées GPS ou le nom de votre localité
Exemple: Pour déterminer ma position géographique recopiez le nom de la localité : Clermont-Ferrand (ou le point gps) 45.777168,3.082417 Dans le champ du formulaire bleu ci-dessous. |
Inscription à :
Articles (Atom)
Archives du blog
-
▼
2026
(117)
-
▼
mai
(18)
- XPQ4 pour les utilisateur windows souhaitant passe...
- script serveur Debian 13 Trixie
- DEV programmation debian trixie
- WooCommerce sur Ubuntu LTS ou Debian 13 Trixie
- wifimanager debian trixie
- macOS Sway Desktop on Debian Trixie
- libretime radio debian trixie
- glpi debian trixie
- swizzin-trixie
- MX tools for Debian
- #IA #programmation avec #google #chrome
- #programmation #jeux #consoles #jeux #retro @Retro...
- Du language #basic dans le navigateur internet
- CLIAMP Lecteur de musique en terminal inspiré de W...
- Linux Command Library Mobile+CLI+Web
- #RunMat #matlab #octave
- J suis geek
- J'ai construit mon mini ordinateur idéal - PicoVis...
-
▼
mai
(18)
Listes d'adresses / Maintenir touche Ctrl enfoncée avant de cliquer sur le lien SVP
- * Thingiverse
- ***CENABUMIX Orleans
- ***Codepen.io
- ***KonstaKANG
- +linux.1ere-page
- >>installati.one
- >ArcadePunk
- 2daygeek
- 9to5Linux
- AcessDV Linux
- Actualia.fr
- Acturama
- AddictiveTips
- AdminInfo
- aidelinux.gogocarto.fr
- Alasta
- Algolia/Linux
- Alternative To
- Ameridroid
- Apache Friends
- ApocalX
- AppImage
- arobase.stesteve.free.fr
- Art du web
- Assembleur ARM Pi
- Atramenta Livres
- Automation-Sense
- AXOPEN
- Babeuloula
- Batocera
- BetaNews
- BiapyHelpDesk
- Bidouille.org
- bios-pw.org
- Bitnami
- Bleeping Computer
- Blog Anthonix .fr
- Blog de Genma
- Blog du grouik
- Blog iglou
- Blog Microlinux
- Blog-des-telecoms
- BlogAdminLinux
- BlogBooker
- BlogDuModerateur
- BLUC
- Board-DB
- Buzz Webzine
- CanardWifi
- Casa OS
- Castman
- CEL CoursEnLigne
- Chaillot Barnabé /Youtube
- Chez Airelle bidules informatique
- Christian's Blog
- ClementStorckDomotique...
- clicours
- Climato
- CloudBooklet
- CNX-Software
- CodeFlow
- CodeLab
- CommandLineFu
- ComputingForGeeks
- Cours-Gratuit
- CoursInfoRevest
- Ctrl-C.Info
- Cyberciti
- Cyberpunk.rs
- DailyGeekShow
- Daniel Miessler
- Debian Install Notes
- Debian-facile.org
- DebugPoint
- Dedoimedo
- DesdeLinux (es)
- DesGeeksEtDesLettres
- DEV
- dev.tranquil.it
- Developpez
- DeviceGuru
- DevTube
- Dieudo
- DigitalOcean
- DioLinux (br)
- distroid.net
- Distrosea
- Distrowatch
- DocumentationTechniqueDebian
- Dolys
- DownloadSource
- DraculaServers
- Dz Techs
- EasyDomTech
- EduTech
- elementary OS
- eLinux
- EmidioPlanamente
- EmuELEC
- EmuOS
- EmuParadise.me
- Engadget.com
- Eskimon
- ExplainShell
- Exploit DB
- FichesPratiquesTIC
- Figer
- FileHippo WindowsAppManager
- Find Best Open Source
- FlatHub
- Floss Manuals
- Formatux
- Forum Hardware
- Foss Naija
- Fouineux.com
- fr.unixlinux.online
- Framapack
- Framasoft
- FrameIP
- Freecode
- Freewares-tutos
- FullCircleMagazine
- Fun of DIY
- Funix.org
- FuturaTech
- Geeek
- Geek on Web
- Geekland ESP
- GeekyTuts
- Génération Linux
- GHacks.net
- Ginjfo
- Gizmo Linux
- GlobalSecurityMag
- GNU Linux Mag
- GoingLinux
- Gotronic
- GreenIT.fr
- GuideDeSurvieDuDebutantLinux
- GuideScriptsBash
- Gwendal Orinel
- Hackaday.io
- Hacked Gadgets
- HackSpark
- Hackster.io
- Hackzism
- HaveTheKnowHow
- HelpManual.io
- HereWithMe
- Hiroom2
- HoaxBuster
- HomputerSecurity
- HoneyMap
- HostingAdvice
- Hostinger
- HostingTermurah
- How to Ubuntu
- HowToForge/Ubuntu
- howtoinstall.co
- HTMLDrive
- iactu.info
- IdleBlog
- Idum
- If-not-true-then-false
- InfoHelpLinux
- infolib.re
- InformatiqueNews
- Informatix.fr
- Infotrux
- Instructables
- InternetActu
- InterServer
- IPV6 Test
- IT Connect
- IT pro
- It's FOSS
- ITNext
- ItsLinuxFoss
- James A Chambers
- jeanluc.rigal.free.fr
- JeSuisUnDev
- JeTesteLinux
- JouerSousLinux
- Journal du hacker
- JustLinux
- KaliTut
- kernel.org
- kernelnewbies.org
- KitPloit
- Kitspace
- KivuMakers
- Kogite
- Koozali SME Server
- Korben
- Kozodo
- KreationNext
- Krizna
- Ktechpit
- KultureGeek
- L'informatique.org
- La cave à tonton
- La caverne de Lucan
- Labo.d'Info.Fond.Orleans
- Labomedia
- LaFermeDuWeb
- Lakka
- LaVacheLibre
- Le comptoir de l'info
- Le Guide Informatique
- Le hollandais volant .net
- Le Linuxien
- Le Monde Informatique
- Le monde Linux
- LeBearCNC
- leicesterontheweb
- LeJargonFrancais
- LeLinuxienBlog
- LeMondeDesTuts
- Les Hirondelles du Net
- Les Horaires
- Les ordis libres
- LesJoiesDuSysAdmin
- LesMoutonsEnrages.fr
- Lettre Pratique .fr
- Lexilogos
- LFFL.org Linux Freedom
- LibrePlanet
- liensutiles.org
- Lignux (es)
- liliputing
- LinApp
- LinOxide
- LinTut
- Linurs.org
- LinusTechTips
- Linux and Ubuntu
- Linux Babe
- Linux Command Library
- Linux Compatible
- Linux Config
- Linux et Geekeries
- Linux Facile
- Linux Foundation
- Linux Fr
- Linux Fun
- Linux Game News
- Linux Hint
- Linux Journal
- Linux MAO
- Linux Scoop
- Linux Today
- Linux Ubuntu pour les nuls
- Linux Uprising
- Linux VM Images
- Linux-Apps
- Linux-FRA
- linux-fra.com
- Linux-Hardware
- Linux-Nantes
- Linux-professionnel
- Linux-sxs.org
- Linux.com
- Linux4Noobs
- Linux4One
- LinuxActionNews
- LinuxAdictos (es)
- LinuxAppfFinder
- Linuxblox
- LinuxCapable
- linuxcommandlibrary.com
- LinuxDicasESuporte (br)
- LinuxG.net
- LinuxGameCast
- LinuxGenie
- LinuxGizmos
- LinuxGraphic
- Linuxintosh
- LinuxLinks
- LinuxManpages
- LinuxNordPasDeCalais
- LinuxPedia
- LinuxQuestions
- LinuxSecurity ***
- LinuxSecurityExpert
- LinuxSoftpedia
- LinuxTracker
- LinuxVillage.org
- LinuxWave
- ListeLogicielsLibres/Wikipedia
- LiveCD/Sourceforge
- lkml.org
- Lofurol
- LowendBox
- LowEndTalk
- LowTechLab
- MagazineLinux
- MakeTechEasier
- MakeUseOf
- MalagaOriginal (es)
- Malekal
- Malgouyres
- Manuel des manuels
- Mariuz's Blog
- MarkoNtech
- MCHobby
- mcours
- Medicatusb.com ***
- Medium
- Memo Linux
- MemoInfoLinux
- Mémoire Secondaire
- MesPotesGeek
- Metabricoleur
- Meteo Orleans
- MicroLinux
- Mint Guide
- Misfu
- Mondedie
- MontanaLinux
- MonVPN
- Morioh
- Morioh
- Morot
- NetworkWorld
- NoobsLab
- Noobunbox.net
- Notes-de-cours
- Novaspirit
- Numétopia
- NyroBlog
- Obligement.free.fr
- Octet malin
- OffreLibre
- OLDU Gestion des risques / Resilience
- OMG Ubuntu
- OnlineConversion
- OodlesTechnologies
- OpenClassrooms
- OpenSharing
- OpenSource
- Opensource Guide
- OpenSourceLowTech
- Ophyde
- Orbital-Apps
- OrdiTutos
- OSS Blog
- OSSIR.org
- OSTechNix
- Own Your Bits
- PackLogicielsLibres
- Parrains.Linux
- Pascal's weblog
- Passion GNU Linux
- PC Astuces/Linux
- PC Inpact
- PenDriveApps
- Performance
- PetitSurfeur
- PhonAndroid
- PiMyLifeUP
- PingTool.org
- PixelBoys
- PlaceOweb
- planet ubuntu fr
- Planet.Auto-Hebergement
- PlanetLibre
- Play.it
- PlayWithFree
- ponge.biz
- PortableAppz
- PrismBreak Apps
- Projet-plume
- QAStack
- QRCode Kaywa
- ReadTheDocs.org
- Real Linux User
- Recalbox
- Regex101
- Repair FAQ
- Repology
- Reposcope
- Ressources TICE
- Retours d'experience
- RetroArena
- RetroBat
- Retrogames.cc
- RetroGameSets
- Retropie
- RiseUp
- ROMStation
- Ronald S. Bultje
- Root-Me
- RootsLabs
- Saironiq's.blog
- SanglierHurlant
- Sciences-du-numerique
- Scrap To Power
- Scriptol
- Seboss666
- selfh.st/apps/
- SemaGeek
- SempreUpdate (br)
- Server-world.info
- ServerFault
- Serveur Girl
- Serveur-linux.info
- si3t.ch
- Siècle Digital
- Silicon
- SiteDuZéro
- SkyMinds
- Slacker News
- Slant Linux
- SmallCab
- SocialCompare
- SoftwareSea
- SolutionsInformatiquesLibres
- SOS-Accessoire
- Spareka pièces
- StackExchange
- StackOverflow
- StackOverRun
- SugarBug
- Super User
- Supertos
- SysAdminNightmare
- Syst&Deploy
- system-linux.eu
- Tec Robust
- TECFA
- TechExpert.Tips
- Technastic
- TechnicalBud
- Techoism
- Techonicals
- Techviewleo.com
- Tecmint
- TecRobust
- TelArchivesOuvertes
- Test IPV6
- Thaeial
- The Ubuntu Maniac
- TheLinuxCauldron
- TheMiniCakeTV
- ThisHostingRocks
- Time Machine #retrogaming
- TipsAndTrics
- Today I Learned
- tomeko.net
- TooLinux
- TousLesDrivers
- TowardsDataScience
- transfer.sh
- Trevilly
- TuGaleres
- Tuto Linux
- TutorialForLinux
- Tutoriel sur les serveurs
- Tutoriels-informatique
- Tutoriels-video.fr
- Tutos.eu
- Tux Machines
- Tuxboard
- tuxette.nathalievilla
- TweetDeck
- Ubiquiti Community
- Ubunlog (es)
- Ubuntizando (es)
- Ubuntu Buzz
- Ubuntu Linux Ressources
- Ubuntu PIT
- Ubuntu Place
- Ubuntu/sourceforge
- UbuntuFree
- UbuntuGenius
- UbuntuHandbook
- UbuntuPIT
- UbuntuServerGuide
- Udemy
- umbrel OS
- UnixCommandLine
- UnixUniverse.com.br
- Unowp
- UpToDown
- Uubu
- Uwenku
- Valou-tweak
- VDM
- Versus
- Video-tuto
- Vintherine/Linux
- Viva O Linux (br)
- ViveGNULinux
- VPN Users
- vTuner radios
- Vulgarisation-Informatique
- VulgumTechus
- Webcafe Ubuntu .org
- WebInfoTuto
- WebsiteForStudents
- WebStator
- WebTips4u
- WebUpd8
- WhatTheServer
- WhoIsHostingThis
- wiki.crowncloud.net
- WikiBooks
- wikidot docs
- Wired
- WonderHowTo
- WowROMS
- www.aptgetlife.co.uk
- www.libellules.ch
- www.thecoderworld.com
- Wyman
- xavki.blog
- Xieme-Art
- Xmodulo
- Xpressrazor
- Xyoos
- Yann
- Yavin4
- YoctoProject
- YubiGeek
- Yunohost
- yunohost.org
- Zaclys
- Zebulon
- Zero202
- Zeste de Savoir
- Zigazou
- Zima OS
- ZoomTutorials
