Personal Info |
Rankings |
|
First Name : Unknown Sex : Man Status : Unknown Birthday : 13 June 1966 (58 ) Area : Paris 13ème |
|
|
A few words |
||
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <link rel="stylesheet" href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css"> <style> #elem { color: #fff; background-color: #aaa; font-size: 25px; padding: 1em; text-align: center; } </style> <script src="https://code.jquery.com/jquery-1.10.2.js"></script> <script src="https://code.jquery.com/ui/1.11.4/jquery-ui.js"></script> </head> <body>
<div id="elem">Dieu a créé la lumière pour que nous faisions des photos</div>
<script> $(function start() { $( "#elem" ).animate({ color: "white", backgroundColor: "rgb( 255, 100, 100 )" }, "slow"); $( "#elem" ).animate({ color: "white", backgroundColor: "rgb( 100, 255, 100 )" }, "slow"); $( "#elem" ).animate({ color: "white", backgroundColor: "rgb( 100, 100, 255 )" }, "slow"); $( "#elem" ).animate({ color: "black", backgroundColor: "rgb( 255, 255, 255 )" }, "slow"); $( "#elem" ).animate({ color: "white", backgroundColor: "rgb( 0, 0, 0 )" }, "slow", start() ); });
</script>
</body> </html>
|