Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
fukangl authored May 7, 2024
1 parent 12a2459 commit 127f423
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -90,26 +90,26 @@
</tr>




<!--R-AL robot-assisted bathing -->
<tr onmouseout="D_stop()" onmouseover="D_start()">
<tr onmouseout="E_stop()" onmouseover="E_start()">
<td style="padding:20px;width:25%;vertical-align:middle">
<div id='D_blurry' class='hidden'><img src="images/softbathing.jpg" width="160"></div>
<div id='D_sharp'>
<div id='E_blurry' class='hidden'><img src="images/softbathing.jpg" width="160"></div>
<div id='E_sharp'>
<a href="images/softbathing.jpg"><img src="images/softbathing.jpg" width="160"></a>
</div>
<script type="text/javascript">
function D_start() {
document.getElementById('D_blurry').style.display = 'inline';
document.getElementById('D_sharp').style.display = 'none';
function E_start() {
document.getElementById('E_blurry').style.display = 'inline';
document.getElementById('E_sharp').style.display = 'none';
}

function D_stop() {
document.getElementById('D_blurry').style.display = 'none';
document.getElementById('D_sharp').style.display = 'inline';
function E_stop() {
document.getElementById('E_blurry').style.display = 'none';
document.getElementById('E_sharp').style.display = 'inline';
}
D_stop()
E_stop()
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:middle">
Expand Down

0 comments on commit 127f423

Please sign in to comment.