Tema: Css Random
Ver Mensaje Individual
  #7 (permalink)  
Antiguo 26/10/2010, 15:30
Avatar de masterojitos
masterojitos
 
Fecha de Ingreso: julio-2008
Ubicación: Lima Callao Chucuito
Mensajes: 1.931
Antigüedad: 16 años, 3 meses
Puntos: 105
Respuesta: Css Random

Yo creo que es mas simple que eso..... algo asi:

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>TEST</title>
  5. <script type="text/javascript">
  6. function rand(min, max){
  7.     var argc = arguments.length;
  8.     if(argc == 0){
  9.         min = 0;
  10.         max = 2147483647;
  11.     }else if(argc == 1){
  12.         return "Warning: rand() expects exactly 2 parameters, 1 given";
  13.     }
  14.     return Math.floor((Math.random() * (max - min + 1)) + min);
  15. }
  16.  
  17. function change(){
  18.     aleatorio = rand(1, 30);
  19.     document.getElementById("back_change").rel = '../css/backgrounds/' + aleatorio + '.css';
  20.     document.getElementById("back_change").innerHTML = aleatorio;
  21. }
  22. </head>
  23. <body onload="change()">
  24. <a id="back_change" href="#" onclick="change()" style="background:url(../images/paint-can.png) no-repeat; height:16px; width:16px;"></a>
  25. </body>
  26. </html>
__________________
Atte. MasterOjitos :ojotes:
Todo sobre Programación Web
Las ultimas tendencias en Efectos y Recursos Web: MasterOjitos Blog