CSS Z-Index OVER Javascript “调查猴子” PNG 滚动条底部淡入淡出

发布于 2024-09-29 05:24:45 字数 397 浏览 7 评论 0原文

希望在我们的调查问卷框底部添加 PNG Fade。简短的问题不会显示它们,但对于带有垂直滚动的较长问题,我想在底部添加轻微的淡入淡出,以帮助指示下面还有更多内容。滚动条应该足以通知人们,但有些人需要更多一点,再加上“我们”(我的老板和我)想要的。

这是我正在处理的页面: http://www.careersinmusic.com/template.aspx

单击“单击我”用于调查”加载调查的链接。

问题#3 更长并且使用卷轴。对于问题 #1 和问题 #2 单击“是”以转到长问题 #3。

任何帮助总是非常感谢,希望这是足够的信息。

Looking to add a PNG Fade at the bottom of the our survey questionnaire box. The short questions won't show them, but for the longer ones with a vertical scroll I would like to add a slight fade at the bottom to help indicate there is more below. The scroll bar should be enough to notify people, but some people need a little more, plus its what "we" (my boss and I) want.

Here is the page I am working on:
http://www.careersinmusic.com/template.aspx

Click the "Click Me for Survey" Link to Load the Survey.

QUESTION #3 is longer and uses a scroll. Click Yes for question #1 and #2 to get to the Long question #3.

Any help is always greatly appreciated, Hopefully this is enough info.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泪之魂 2024-10-06 05:24:45
  • 首先,为您的#PageContentDiv 指定一个position 样式(可能是relative)。
  • 然后,在该 div 中包含 PNG 淡入淡出图像,并带有 position(可能是 absolute),
  • z-index:1 赋予 >#PageContentDivz=index:2 到推子图像
  • 在该推子图像上设置 display:none
  • Javascript:测试是否 #PageContentDiv 已滚动 (.scrollTop==0)
  • Javascript:如果滚动条仍处于 0,则显示推子 (.style.display='')

关键部分请记住,元素需要 position 样式才能应用 z-index,并且一旦用户意识到该框可以滚动,您就需要删除推子。

  • First, give your #PageContentDiv a position style (probably relative).
  • Then, include the PNG fade image in that div, also with a position (probably absolute)
  • Give z-index:1 to the #PageContentDiv, z=index:2 to the fader image
  • Set display:none on that fader image
  • Javascript: Test if #PageContentDiv has been scrolled (.scrollTop==0)
  • Javascript: Show the fader (.style.display='') if scroll bar is still at 0

Key parts to remember are that elements need a position style to have a z-index applied, and that you'll need to remove the fader once the user has realized the box can be scrolled.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文