ピザメーカーに似たものを作ろうとしています。
基本的に、私がやろうとしているのは、別の画像の上に半透明の画像を追加することだけです。
CSSとz-indexプロパティを使用してこれを実現できると思いましたが、いくつか問題があります。
写真はうまくオーバーレイされていますが、一生の間、テーブルセルの中央に配置することはできません。
これが私が思いついたものです。ただし、配置によって画像がテーブルセルの外に移動します。
<table style="width:400px" border="1">
<tr>
<td align="center">
<div style="position: fixed; z-index:100">
<asp:ImageButton ID="imgbtn_pizzabase" ImageAlign="Middle" ImageUrl="~/SiteImages/pizza_test.png" runat="server" />
</div>
<div style="position: fixed; z-index:5000">
<asp:ImageButton ID="ImageButton1" ImageAlign="Middle" ImageUrl="~/SiteImages/findme.png" runat="server" />
</div>
</td>
</tr>
.
.
。