我目前有 2 个画布,分别显示衬衫的正面和背面。我使用了一个列表来选择是显示正面还是背面。我只能使用锚点 ( #front
) 来解决问题,但这意味着滚动到网页中的特定位置。我是否有其他方法来实现它并在页面加载时将焦点设置到前面的画布上?
<ul style="border:0px solid yellow; padding-left:10px;">
<li id="One">
<a href="#One" id="first" style="height:20px; width:208px; margin-bottom:-8px; padding-bottom:0px;">
<span style="margin-left:15px; font-size:medium;">Front Side</span>
</a>
<div>
<canvas id="collage" width="450" height="450" style="margin:0px; padding:0px;"></canvas>
</div>
</li>
<li id="Two">
<a href="#Two" id="sec" style="height:20px; width:208px; margin-bottom:-8px; padding-bottom:0px;">
<span style="margin-left:15px; font-size:medium;">Back Side</span>
</a>
<div>
<canvas id="collage2" width="450" height="450" style="margin:0px; padding:0px;"></canvas>
</div>
</li>
</ul>