Con ese "parseInt" si que me va!! Muchas gracias!
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú document.getElementById('ancho').innerHTML=ce;
a+=ce;
b+=ce;
x-=ce*2;
y-=ce*2;
a+=1;
b+=1;
x-=1*2;
y-=1*2;
ancho_rectangulo = document.getElementById("ancho_del_cuadro").value;
ancho_rectangulo = 1;
a+=ce;
b+=ce;
x-=ce*2;
y-=ce*2;
ctx.lineWidth=ce;
@echo off
title AP
color 02
set veces= 0
set pest= 0
set visitas= 0
echo escribe abajo tu objetivo
set/p objetivo=
echo escribe tu navegador predeterminado
set/p navegador=
echo escribe las rondas que quieras
set/p rondas=
echo escribe los segundos por ronda que quieras
set/p segundos_rondas=
echo numero ingresos por cada ronda
set/p veces_rondas=
set/a visitas=%rondas%*%veces_rondas%
:empezar
start http://%objetivo%
set/a pest=%pest%+1
if %pest%==%veces_rondas% (set/a pest=0) else (goto empezar)
timeout /t %segundos_rondas%
TASKKILL /IM %navegador%.exe /F >nul
cls
set/a veces=%veces%+%veces_rondas%
if %veces%==%visitas% (cls) else (goto empezar)
echo TERMINADO!
echo Visitas: %veces%
echo .
echo .
echo adios
pause >nul
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--[if lte IE 8]><meta http-equiv="X-UA-Compatible" content="chrome=1" /><![endif]-->
<title>My First Canvas Game</title>
</head>
<body>
<h1>My First Canvas Game</h1>
<p><canvas id="canvas" width="900" height="450" style="background:#999">
Canvas not supported by your browser.
</canvas></p>
</br>
<form name="registro">
Ancho del borde del rectángulo: <input type="range" id="ancho_del_cuadro" min="1" max="20" value="1" /><div id="ancho"></div></br>
<script type="application/javascript" src="game.js"></script>
</form>
</body>
</html>
window.addEventListener('load',init,false);
var canvas=null,ctx=null;
var a=0,b=0,x=0,y=0,ce=1, ar=5;
function init(){
canvas=document.getElementById('canvas');
x=canvas.height;
y=canvas.width;
ctx=canvas.getContext('2d');
run();
}
function run(){
requestAnimationFrame(run);
act();
paint(ctx);
}
function act(){
a+=ce;
b+=ce;
x-=ce*2;
y-=ce*2;
modificaciones();
}
function random(max){
return Math.floor(Math.random()*max);
}
function modificaciones(){
ancho_rectangulo = document.getElementById("ancho_del_cuadro").value;
ce=ancho_rectangulo;
document.getElementById('ancho').innerHTML=ce;
}
function paint(ctx){
ctx.lineWidth=ce;
ctx.strokeStyle='rgb('+random(255)+','+random(255)+','+random(255)+')';
ctx.strokeRect(a,b,y,x);
}
window.requestAnimationFrame=(function(){
return window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
function(callback){window.setTimeout(callback,17);};
})();
ancho_rectangulo = document.getElementById("ancho_del_cuadro").value;
ancho_rectangulo = 1;