首页 > 代码库 > [ html canvas 透明度 globalApha ] canvas绘图属性 透明度 globalApha 属性演示
[ html canvas 透明度 globalApha ] canvas绘图属性 透明度 globalApha 属性演示
1 <!DOCTYPE html> 2 <html lang=‘zh-cn‘> 3 <head> 4 <title>Insert you title</title> 5 <meta name=‘description‘ content=‘this is my page‘> 6 <meta name=‘keywords‘ content=‘keyword1,keyword2,keyword3‘> 7 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 8 <link rel=‘stylesheet‘ type=‘text/css‘ href=http://www.mamicode.com/‘./css/index.css‘ />"color: #008080;"> 9 <script type=‘text/javascript‘ src=http://www.mamicode.com/‘./js/jquery-1.12.1.min.js‘></script>"color: #008080;">10 <style type=‘text/css‘>11 html,body,canvas,div,select,option {12 margin: 0; padding: 0;13 }14 15 html {16 height: 100%;17 }18 19 body {20 background: #666;21 }22 23 #can {24 display: block; margin: 25px auto; background: #FFF; border-radius: 2px;25 }26 </style>27 <script type=‘text/javascript‘>28 $( document ).ready( function(){29 var can = $( ‘#can‘ ).get( 0 );30 var oCan = can.getContext( ‘2d‘ );31 oCan.beginPath();32 oCan.fillStyle = ‘#F00‘;33 oCan.fillRect( 100 , 100 , 100 , 100 );34 oCan.save();35 oCan.globalAlpha = .5;36 oCan.fillStyle = ‘#0F0‘;37 oCan.fillRect( 150 , 150 , 100 , 100 );38 oCan.restore();39 oCan.closePath();40 } )41 </script>42 </head>43 <body>44 <canvas id=‘can‘ width=‘500‘ height=‘450‘>检测到您的浏览器版本过低请升级您的浏览器以获取更好的用户体验...</canvas>45 </body>46 </html>
[ html canvas 透明度 globalApha ] canvas绘图属性 透明度 globalApha 属性演示
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。