gpt4 book ai didi

jquery - 似乎无法让 jquery.dropshadow.js 在正确的选择器上工作?

转载 作者:太空宇宙 更新时间:2023-11-04 00:26:46 24 4
gpt4 key购买 nike

似乎无法让 jquery.dropshadow.js 在正确的选择器上工作。我试图选择 id,但我无法让它工作。我也试过这门课(见下文)。

<script src="scripts/jquery.dropshadow.js" type="text/javascript"></script>
<script type="text/javascript">
window.onload = function () {
$("#tacoFTB").dropShadow({ left: 8, top: 10, opacity: 0.8, blur: 4 });
}
</script>

HTML

<form id="form1" runat="server">
<div class="backgroundBox">
<table id="tacoBox" cellpadding="0" cellspacing="0" width="520" border="0">
<tr>
<td><img src="images/spacer.png" alt="" class="tacoTableColumnSpacer"/></td>
<td class="tacoBoxMagicFTB" id="tacoFTB"><img src="images/spacer.png" alt="" height="55" width="1"/><img src="images/tb_feedthebeat.png" alt=""/><script type="text/javascript">getLikesFTB('113078108881');</script></td>
<td><img src="images/spacer.png" alt="" class="tacoTableColumnSpacer"/></td>
</tr>
</table>

CSS

.tacoBoxMagicFTB
{
background-color: White;
border:1px solid #b695cb;
width:100%;
position: relative;
}

.tacoBoxMagicFTB img
{
vertical-align: middle;
padding-left: 10px;
}

如有任何帮助,我们将不胜感激。

最佳答案

您不再需要 jQuery 来应用阴影,CSS 可以完美地处理它。

#tacoFTB
{
-moz-box-shadow: 10px 10px 5px #888;
-webkit-box-shadow: 10px 10px 5px #888;
box-shadow: 10px 10px 5px #888;
}

此外,您的表格似乎没有显示表格数据,您是否将其用作布局工具?

关于jquery - 似乎无法让 jquery.dropshadow.js 在正确的选择器上工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6408884/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com