版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
1、canvas畫的四漸變色播放按鈕效果這篇文章主要介紹了用法javascript和html5 canvas畫的四漸變色播放按鈕效果,需要的伴侶可以參考下是html5浮現(xiàn)的新標(biāo)簽,像全部的dom對(duì)象一樣它有自己本身的屬性、辦法和大事,其中就有繪圖的辦法,js能夠調(diào)用它來舉行繪圖,本文用法canvas標(biāo)簽和javascript協(xié)作畫出了一個(gè)四色漸變的播放按鈕效果。 實(shí)現(xiàn)代碼: 復(fù)制代碼代碼如下:畫按鈕您的掃瞄器不支持canvas,請(qǐng)升級(jí)掃瞄器! var canvas = document.getelementbyid(&39;mycanvas&39;);/*獵取定義的畫布*/var
2、ctx = canvas.getcontext(&39;2d&39;);/*利用2維環(huán)境中舉行繪畫*/drawplaybutton(ctx,200,200);drawplaybutton(ctx,400,200);drawplaybutton(ctx,300,200);function drawplaybutton(_context,x,y)var nradius=30;/半徑_context.save();_context.translate(x,y);/構(gòu)造線變var yellowgrad=_context.createlineargradient(30,0,0,30);y
3、ellowgrad.addcolorstop(0, &39;fccb02&39;);yellowgrad.addcolorstop(0.5, &39;fbf14d&39;);yellowgrad.addcolorstop(1, &39;ffcb02&39;);var bluegrad=_context.createlineargradient(30,0,0,30);bluegrad.addcolorstop(0, &39;2a459c&39;);bluegrad.addcolorstop(0.5, &39;0e7adc&a
4、mp;39;);bluegrad.addcolorstop(1, &39;2a459e&39;);var redgrad=_context.createlineargradient(30,0,0,30);/通過rotate來旋轉(zhuǎn)redgrad.addcolorstop(0, &39;d0372f&39;);redgrad.addcolorstop(0.5, &39;e0675e&39;);redgrad.addcolorstop(1, &39;ce392d&39;);var greengrad=_context.createlin
5、eargradient(30,0,0,30);/通過rotate來旋轉(zhuǎn)greengrad.addcolorstop(0, &39;059700&39;);greengrad.addcolorstop(0.5, &39;02e003&39;);greengrad.addcolorstop(1, &39;019a02&39;); /繪制兩弧夾角內(nèi)容drawcake(_context,0,yellowgrad,nradius);drawcake(_context,math.pi/2,bluegrad,nradius);drawcake(_context
6、,math.pi,redgrad,nradius);drawcake(_context,3*math.pi/2,greengrad,nradius);/內(nèi)圓色彩var lingrad =_context.createlineargradient(-30,-30,30,30);lingrad.addcolorstop(0, &39;4672df&39;);lingrad.addcolorstop(0.2, &39;6188e5&39;);lingrad.addcolorstop(0.5, &39;98b1ef&39;);lingrad.addcol
7、orstop(0.8, &39;b1c3f2&39;);lingrad.addcolorstop(1, &39;eaedfc&39;);_context.save();_context.beginpath();/內(nèi)圓_context.fillstyle=lingrad;_context.arc(0,0,nradius-10,0,math.pi*2,true);_context.fill();_context.closepath();_context.restore();/繪制三角var trianglerad=_context.createlineargradi
8、ent(-6,-10,-6,10);trianglerad.addcolorstop(0, &39;99d4ea&39;);trianglerad.addcolorstop(0.2, &39;5e8fdd&39;);trianglerad.addcolorstop(0.5, &39;0f17a1&39;);trianglerad.addcolorstop(0.8, &39;4c65cc&39;);trianglerad.addcolorstop(1, &39;7299e5&39;);_context.beginpa
9、th();_context.fillstyle=trianglerad;_context.moveto(12,0);_context.lineto(-6,10);_context.lineto(-6,-10);_context.fill();_context.restore();/繪畫一個(gè)扇形function drawcake(_context,_nrotateangle,_fillcolor,_nradius)_context.save();_context.beginpath();_context.fillstyle=_fillcolor;_context.rotate(_nrotateangle);_context.moveto(_nradius-10,0);_context.lineto(_nradius,0);/向右畫一根線_context.arc(0,0,_nradius,0,math.pi/2,false);_context.lin
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025年度滑雪場設(shè)施裝修安全防護(hù)合同3篇
- 2025年度早餐店加盟連鎖承包合同范本4篇
- 2025年度智能車間承包環(huán)保技術(shù)改造協(xié)議4篇
- 2024-2028年中國無線電接收機(jī)行業(yè)發(fā)展前景預(yù)測(cè)及投資戰(zhàn)略規(guī)劃研究報(bào)告
- 中國太陽能空調(diào)項(xiàng)目可行性研究報(bào)告建議書
- 2025年度個(gè)人二手房定金買賣合同書標(biāo)準(zhǔn)化版2篇
- 2025年度個(gè)人借款聯(lián)保合同(附財(cái)產(chǎn)抵押)4篇
- 2025年山東國新抱犢食品有限公司招聘筆試參考題庫含答案解析
- 二零二五版苗木種植基地水資源利用與節(jié)水技術(shù)合同4篇
- 2025年寧夏昊陽資產(chǎn)管理有限公司招聘筆試參考題庫含答案解析
- 公司組織架構(gòu)圖(可編輯模版)
- 1汽輪機(jī)跳閘事故演練
- 陜西省銅川市各縣區(qū)鄉(xiāng)鎮(zhèn)行政村村莊村名居民村民委員會(huì)明細(xì)
- 禮品(禮金)上交登記臺(tái)賬
- 普通高中英語課程標(biāo)準(zhǔn)詞匯表
- 北師大版七年級(jí)數(shù)學(xué)上冊(cè)教案(全冊(cè)完整版)教學(xué)設(shè)計(jì)含教學(xué)反思
- 2023高中物理步步高大一輪 第五章 第1講 萬有引力定律及應(yīng)用
- 青少年軟件編程(Scratch)練習(xí)題及答案
- 浙江省公務(wù)員考試面試真題答案及解析精選
- 系統(tǒng)性紅斑狼瘡-第九版內(nèi)科學(xué)
- 全統(tǒng)定額工程量計(jì)算規(guī)則1994
評(píng)論
0/150
提交評(píng)論