Renommer clé USB

Résolu/Fermé
Utilisateur anonyme - 2 déc. 2015 à 18:35
 Utilisateur anonyme - 28 déc. 2015 à 14:58
Bonjour,

J'aimerai renommer ma clé USB avec plus de caractère. Ce projet est il réalisable.

Merci de répondre...
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 100px;
height: 100px;
background-color: red;
position: relative;
/* Chrome, Safari, Opera */
-webkit-animation-name: example;
-webkit-animation-duration: 5s;
-webkit-animation-timing-function: linear;
-webkit-animation-delay: 2s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-direction: alternate;
/* Standard syntax */
animation-name: example;
animation-duration: 5s;
animation-timing-function: linear;
animation-delay: 2s;
animation-iteration-count: infinite;
animation-direction: alternate;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes example {
0% {background-color:red; left:0px; top:0px;}
25% {background-color:yellow; left:200px; top:0px;}
50% {background-color:blue; left:200px; top:200px;}
75% {background-color:green; left:0px; top:200px;}
100% {background-color:red; left:0px; top:0px;}
}

/* Standard syntax */
@keyframes example {
0% {background-color:red; left:0px; top:0px;}
25% {background-color:yellow; left:200px; top:0px;}
50% {background-color:blue; left:200px; top:200px;}
75% {background-color:green; left:0px; top:200px;}
100% {background-color:red; left:0px; top:0px;}
}
</style>
</head>
<body>

<p><b>Note:</b> This example does not work in Internet Explorer 9 and earlier versions.</p>

<div></div>

</body>
</html>



UN GEEK
A voir également:

1 réponse

FeLynX Messages postés 7354 Date d'inscription mercredi 13 août 2008 Statut Modérateur Dernière intervention 18 février 2023 1 534
4 déc. 2015 à 15:46
Bonjour, on renomme une clé USB au moment du formatage (clic droit, formater...). Attention, cela supprime toutes les données qu'elle contient. Quel rapport avec le code HTML qui suit ?
5
Utilisateur anonyme
28 déc. 2015 à 14:58
dsl un simple erreur avec le travaille de mon site...<
0