看到这里,我又瞄了一眼课程大纲,猛然发现后面居然没有视频了。。。。,oh! my god!亦步亦趋的学习方式不行了,只能好好学完老师的技巧,然后自己想办法。
2016-12-20
<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
carousel.run(i);
传入的参数值可以决定3D旋转图的deg,具体看看run()的方法就明白了,懂了套路就可以自己写各种参数;
如果不太懂将代码封装到js的意义,可以打开F12看看代码结构,将代码写到html里面,样式写到css里,然后隐藏,js用来做简单的出现、旋转和隐藏操作
传入的参数值可以决定3D旋转图的deg,具体看看run()的方法就明白了,懂了套路就可以自己写各种参数;
如果不太懂将代码封装到js的意义,可以打开F12看看代码结构,将代码写到html里面,样式写到css里,然后隐藏,js用来做简单的出现、旋转和隐藏操作
2016-12-09