- 预览题:Canvas
html
<canvas id="cas" width="300" height="300"></canvas>
<script>
var ct = document.getElementById('cas').getContext('2d');
ct.beginPath();
ct.strokeStyle = 'green';
ct.lineWidth = 5;
ct.arc(100, 120, 25, Math.PI / 6, 5 * Math.PI / 6, false);
ct.stroke();
</script>
答案:开口向上的绿色弧线
- UML中事务的关系
- 依赖、关联、泛化、实现,没有继承
- TCP状态变迁
- HTML5被移除的标签
- font....
- 算法题:滑动窗口