概述
var secs = 20; //倒计时的秒数
var URL ="http://mzsts.host3v.com" ;
function Load(){
for(var i=secs;i>=0;i--)
{
window.setTimeout('doUpdate(' + i + ')', (secs-i) * 1000);
}
}
function doUpdate(num)
{
if(secs>0)
{document.getElementById('ShowDiv').innerHTML = '将在'+num+'秒后自动跳转到主页' ;
if(num == 0) { window.location =URL; }
}
}
function timefun(){
secs =-1;
}
var canvas = document.getElementById("myCanvas");
if(canvas.getContext){
var ctx = canvas.getContext("2d");
ctx.beginPath();
ctx.strokeStyle = "blue";
var circle = { x : 10, y : 40, r : 10 };
ctx.arc(circle.x, circle.y, circle.r, -Math.PI*3/ 4, Math.PI / 2, false); ctx.stroke();
}
var canvas = document.getElementById("myCanvas");
if(canvas.getContext){
var ctx = canvas.getContext("2d");
ctx.beginPath();
ctx.strokeStyle = "blue";
var circle = { x : 25, y : 26, r : 10 };ctx.arc(circle.x, circle.y, circle.r, -Math.PI/2, Math.PI/4, true); ctx.stroke();
}
var canvas = document.getElementById("myCanvas");
if(canvas.getContext){
var ctx = canvas.getContext("2d");
ctx.beginPath();
ctx.strokeStyle = "red";
var circle = { x : 30, y : 35, r : 10 };
ctx.arc(circle.x, circle.y, circle.r, -Math.PI*3/ 4, Math.PI / 2, false); ctx.stroke();
}
var canvas = document.getElementById("myCanvas");
if(canvas.getContext){
var ctx = canvas.getContext("2d");
ctx.beginPath();
ctx.strokeStyle = "red";
var circle = { x :45, y : 23, r : 10 };ctx.arc(circle.x, circle.y, circle.r, -Math.PI/2, Math.PI/4, true); ctx.stroke();
}
var canvas = document.getElementById("myCanvas2");
if(canvas.getContext){
var ctx = canvas.getContext("2d");
ctx.font = "10px Courier New";
ctx.fillStyle = "blue";
ctx.fillText("文洲 的个人主页,彼岸", 10, 20);
ctx.fillText("http://mzsts.host3v.com", 10, 40);
}
点击延时
直接跳转
最后
以上就是高高大山为你收集整理的html倒计时面自动跳转,小代码 html 自己网页倒计时跳转的全部内容,希望文章能够帮你解决html倒计时面自动跳转,小代码 html 自己网页倒计时跳转所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复