Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
几个小时以来,我一直在尝试修改此脚本,以使“hello bar Alternative”出现在页面底部而不是顶部,但均未成功。我知道这可能不是很难,但是我对 jQuery 的理解非常有限,而且我还在学习 CSS 的基础知识来编辑样式。这些图像将相当直接。谁能建议我朝着正确的方向前进?
首先,由于您希望它出现在页面底部,因此您必须使其“固定”:
.jBar { position: fixed; bottom: 0; width: 100%; }
那么你可能想要使用.slideDown而不是.slideUp.
.slideDown
.slideUp
不知道还需要什么,你可以从那个开始。