bonjour je débute dans jquery et j'essaie un exercice que je n'arrive pas a faire .
je vous donne le code :
voila si quelqu'un peut me donner une petite piste sa serai vraiment sympas .
Modifié par kynnek (14 Oct 2015 - 12:50)
je vous donne le code :
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="javascript.js"></script> <script src="jquery-2.1.4.js"></script>
</head>
<body>
<div><p>hello la compagnie</p></div>
</body>
</html>
html {
margin: 0;
padding: 0;
}
body {
color: #555753;
margin: 0;
padding: 0;
}
div {
width:200px;
height:100px;
background-color: aqua;
margin:auto;
}
p {
text-align:center;
padding-top:50px;
font-size:20px;
}
$(document).ready(function () {
$('p').click(function () {
$(this).css('font-size', "100px");;
});
});
voila si quelqu'un peut me donner une petite piste sa serai vraiment sympas .
Modifié par kynnek (14 Oct 2015 - 12:50)