茄子在线看片免费人成视频,午夜福利精品a在线观看,国产高清自产拍在线观看,久久综合久久狠狠综合

    <s id="ddbnn"></s>
  • <sub id="ddbnn"><ol id="ddbnn"></ol></sub>

  • <legend id="ddbnn"></legend><s id="ddbnn"></s>

    使用html5 canvas 畫時(shí)鐘代碼實(shí)例分享
    來源:易賢網(wǎng) 閱讀:1880 次 日期:2016-07-09 10:25:22
    溫馨提示:易賢網(wǎng)小編為您整理了“使用html5 canvas 畫時(shí)鐘代碼實(shí)例分享”,方便廣大網(wǎng)友查閱!

    HTML5足夠強(qiáng)大實(shí)現(xiàn)很多功能,畫一個(gè)時(shí)鐘只是一個(gè)小玩意。圖片指針用ctx的drawImage可以實(shí)現(xiàn)。至于兼容性問題,網(wǎng)上的解決方案已經(jīng)很多了。這個(gè)東東是用來玩的,不是用來做應(yīng)用的,學(xué)習(xí)下canvas API。

    先給大家展示效果圖

    名單

    實(shí)現(xiàn)代碼

    代碼如下:

    <script type="text/javascript">

    // <![CDATA[

    var time = new Date();

    var h = time.getHours();

    var m = time.getMinutes();

    var s = time.getSeconds();

    var weekday={:'星期日',:'星期一',:'星期二',:'星期三',:'星期四',:'星期五',:'星期六'};

    h=h>?(h-)*+parseInt(m/):h*+parseInt(m/); //時(shí)針 初始位置

    //=====================================

    var x=,y=,sAngle=; //x y 原點(diǎn) 秒針角度變量

    function draw()

    {

    var c=document.getElementById("myCanvas");

    var ctx=c.getContext("d");

    ctx.clearRect(,,c.width,c.height);

    s++;//秒針

    //背景

    ctx.fillStyle = '#eee' // Make changes to the settings

    ctx.globalAlpha = .;

    ctx.fillRect(,,c.width,c.height); // Draw a rectangle with new settings

    //===填充(表明)原點(diǎn)===

    ctx.beginPath();

    ctx.arc(x,y,,,true);

    ctx.fill();

    ctx.closePath();

    var grd=ctx.createLinearGradient(x,y,,);

    grd.addColorStop(,"#FF");

    grd.addColorStop(.,"#FF");

    grd.addColorStop(,"#FF");

    ctx.fillStyle=grd;

    ctx.font = "pt Arial";

    ctx.fillText("html",,);

    ctx.save();

    // 時(shí)間刻度

    for(var i=;i<;i++)

    {

    var angle=(Math.PI*)/;

    ctx.beginPath();

    var b=i==||i==||i==||i==

    if(i%==){

    if(b){

    ctx.fillStyle="red";

    radius=;

    }

    else{

    ctx.fillStyle="blue";

    radius=.;

    }

    ctx.font="px Arial";

    ctx.fillText(i/==?:i/,x-,y-); //x大-右 小-左 y大小 數(shù)字刻度

    }

    else

    {

    ctx.fillStyle="#";

    radius=;

    }

    if(s==i)radius=radius+;

    ctx.arc(x,y-,radius,,true);

    ctx.fill();

    transform(ctx,x,y,angle,true);

    }

    ctx.restore();

    //==========================

    sAngle=(Math.PI*)/*s; //秒度

    ctx.save(); //時(shí)針

    ctx.fillStyle="red";

    // ctx.strokeStyle="red";

    ctx.lineWidth=;

    transform(ctx,x,y,(Math.PI*)/*h,true);

    sj(ctx,x,y,x-,y-,x+,y-);

    ctx.restore();

    ctx.save();//分針轉(zhuǎn)動(dòng)

    ctx.fillStyle="blue";

    ctx.lineWidth=;

    transform(ctx,x,y,(Math.PI*)/*m,true);

    sj(ctx,x,y,x-,y-,x+,y-);

    ctx.restore();

    //秒針轉(zhuǎn)動(dòng)

    ctx.save();

    ctx.fillStyle="#";

    transform(ctx,x,y,sAngle,true);

    sj(ctx,x,y,x-,y-,x+,y-);

    ctx.restore();

    //數(shù)據(jù)整理

    if(s%==){

    sAngle=,s=,m++;

    if(m==){ //每十二分 時(shí)針旋轉(zhuǎn)一次

    if(m!=)h++;

    if(m%==)m=;

    }

    if(h%==)h=;

    };

    //*注:如果是放到外面 判斷分針或時(shí)針轉(zhuǎn)動(dòng) 則滿足條件時(shí) 都重復(fù)會(huì)運(yùn)行 原因 每執(zhí)行一遍 只有秒針 在時(shí)刻變動(dòng) *//

    var dateString=time.getFullYear()+"年"+(time.getMonth()+)+"月"+time.getDate()+"日 "+weekday[time.getDay()]+" h:"+time.getHours()+" m:"+m+" s:"+s;

    document.getElementById("d").innerHTML=dateString;

    }

    //指針三角!

    function sj(ctx,x,y,x,y,x,y){

    //====例====

    // ctx.beginPath();

    // ctx.moveTo(x,y);

    // ctx.lineTo(x,y-);

    // ctx.stroke();

    // ctx.beginPath();

    //

    // ctx.moveTo(x-,y-);

    // ctx.lineTo(x+,y-);

    // ctx.lineTo(x,y--);

    // ctx.fill();

    ctx.beginPath();

    ctx.moveTo(x,y);

    ctx.lineTo(x,y);

    ctx.stroke();

    ctx.beginPath();

    ctx.moveTo(x,y);

    ctx.lineTo(x,y);

    ctx.lineTo(x,y);

    ctx.fill();

    }

    //據(jù)坐標(biāo)旋轉(zhuǎn)

    function transform(ctx,x,y,angle,b){

    if(b){// 順時(shí)針

    ctx.transform(Math.cos(angle), Math.sin(angle),

    -Math.sin(angle), Math.cos(angle),

    x*(-Math.cos(angle)) + x*Math.sin(angle),

    y*(-Math.cos(angle)) - y*Math.sin(angle))

    }

    }

    //=====每秒執(zhí)行============(執(zhí)行事件自選)

    window.setInterval(function(){draw()},);

    // window.onload=function(){ //效果同上

    // setInterval("draw()",);

    // };

    // ]]>

    </script>

    更多信息請(qǐng)查看網(wǎng)頁制作
    易賢網(wǎng)手機(jī)網(wǎng)站地址:使用html5 canvas 畫時(shí)鐘代碼實(shí)例分享
    由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

    2026國考·省考課程試聽報(bào)名

    • 報(bào)班類型
    • 姓名
    • 手機(jī)號(hào)
    • 驗(yàn)證碼
    關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺(tái) | 手機(jī)站點(diǎn) | 投訴建議
    工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
    云南網(wǎng)警備案專用圖標(biāo)
    聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
    咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
    云南網(wǎng)警報(bào)警專用圖標(biāo)