scrollpic.jsp
来自「简单实现的商品购物系统」· JSP 代码 · 共 31 行
JSP
31 行
<%@ page contentType="text/html; charset=GBK" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<style type="text/css">
<!--
.style1 {
color: #FFFFFF;
font-weight: bold;
}
.style2 {color: #FFFFFF}
-->
</style>
<marquee width="100%" onMouseMove="stop()" onMouseOut="start()" scrolldelay="200">
<table width="165" height="153" border="1" cellpadding="0" cellspacing="8" bordercolor="#999999">
<tr>
<td width="74" height="143" bgcolor="#0099cc"><p class="style1">销售</p>
<p class="style1">排行榜</p></td>
<c:forEach var="book" items="${list}">
<td width="75"><div align="center"><a href="bookinfo.jsp?bookid=${book.bookid}"><img src="${book.picture}" alt="图书热卖" width="99" height="135" align="middle" /></a></div></td>
</c:forEach>
<td width="153" bgcolor="#0099cc"><p class="style2"><strong>销售</strong></p>
<p class="style2"><strong>排行榜</strong></p></td>
</tr>
</table>
</marquee><br>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?