博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【html5】如何让Canvas标签自适应设备
阅读量:6830 次
发布时间:2019-06-26

本文共 433 字,大约阅读时间需要 1 分钟。

javascript方法:

var oC=document.querySelectorAll('canvas')[0];

oC.width=document.documentElement.clientWidth;
oC.height=document.documentElement.clientHeight;
//oC.width=window.innerWidth;
//oC.height=window.innerHeight;

css方法:

html,body{width:100%;height:100%;margin:0;overflow:hidden;}

body{background:#000;}
canvas{background:#fff;height:100%;width:100%;}

 

 

作者:smile.轉角

QQ:493177502

转载于:https://www.cnblogs.com/websmile/p/5292392.html

你可能感兴趣的文章
php编译错误Note that the MySQL client library is not bundled anymore或者cannot find mysql header file...
查看>>
Myeclipse--jBPM4.3插件
查看>>
[每日一题] 11gOCP 1z0-053 :2013-10-12 RESULT_CACHE在哪个池?.............................44
查看>>
Unity物理系统的触发器
查看>>
mysql慢查询日志相关参数
查看>>
项目中如果管理前端文件CSS和JS
查看>>
13 jsp include
查看>>
Nginx和PHP-FPM的启动、重启、停止脚本分享(转)
查看>>
如何拷贝CMD命令行文本到粘贴板
查看>>
Oracle数据库—— 存储过程与函数的创建
查看>>
兼容iOS 10 资料整理笔记
查看>>
逻辑回归原理小结
查看>>
php 7.0 安装以及老版本php删除
查看>>
【Machine Learning】决策树案例:基于python的商品购买能力预测系统
查看>>
【30集iCore3_ADP出厂源代码(ARM部分)讲解视频】30-5 底层驱动之旋转编码器
查看>>
[Erlang]Erlang经常使用工具解说
查看>>
PHP:第五章——字符串编码函数
查看>>
What the difference between __weak and __block reference?
查看>>
【Linux 驱动】Netfilter/iptables (八) Netfilter的NAT机制
查看>>
python模块之psutil详解
查看>>