看到这里,我又瞄了一眼课程大纲,猛然发现后面居然没有视频了。。。。,oh! my god!亦步亦趋的学习方式不行了,只能好好学完老师的技巧,然后自己想办法。
2016-12-20
最新回答 / 慕粉3975888
rem 和 em的区别就是 rem 是根据body的font-size大小来显示当前元素的大小,em是根据父集的font-size来显示元素大小的,rem比较方便,直观,更容易计算一些
2016-12-15
<canvas id="cvs" width="500" height="500"></canvas>
<script>
var cvs = document.getElementById('cvs');
var ctx = cvs.getContext('2d');
ctx.strokeStyle = "red";
ctx.strokeRect(10, 10, 190, 100);
ctx.fillStyle = "blue";
ctx.fillRect(50,10,100,100);
</script>
<script>
var cvs = document.getElementById('cvs');
var ctx = cvs.getContext('2d');
ctx.strokeStyle = "red";
ctx.strokeRect(10, 10, 190, 100);
ctx.fillStyle = "blue";
ctx.fillRect(50,10,100,100);
</script>
2016-12-15