sipi mira hice esto:
Código HTML:
Ver original <script src="http://code.jquery.com/jquery-1.11.0.min.js"></script> <script src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script> #TV {
background:#e7e7e7;
width:500px;
height:500px;
margin:auto;
}
.TvFondoTOP {
background:#000000;
height:1px;
}
.TvFondoDown {
background:#000000;
height:1px;
margin-top:499px;
}
<button class="PrenderTV" onclick="OffTv();">Apagar
</button> <button class="PrenderTV" onclick="OnTv();">Encender
</button> {
// Documento Listo
$(document).ready(function(){
// Subir Fondo TOP
$(".TvFondoTOP").css({
"height":"1px",
"-webkit-transition":"1s",
});
// Bajar Fondo Down
$(".tvFondoDown").css({
"height":"1px",
"margin-top":"499px",
"-webkit-transition":"1s",
});
});
}
// Apagar Tv
function OffTv()
{
// Documento listo
$(document).ready(function(){
// Bajar Fondo TOP
$(".TvFondoTOP").css({
"height":"49%",
"-webkit-transition":"1s",
});
// Subir Fondo Down
$(".tvFondoDown").css({
"height":"50%",
"margin-top":"1px",
"-webkit-transition":"1s",
});
});
}
bueno quería saber si se podía hacer con hipervinculo no soy muy bueno en lo que es javascript je ^^ digamos que va a la pagina2.php, ¿se puede?