使用jquery随机显示一些东西
我的问题是这样的:
我有带有背景图像的 div
,不透明度为 0
!当您将鼠标悬停在其上时,不透明度变为 1
,但我也希望它有时随机显示。因此,我正在寻找一种方法来随机赋予此 div
不透明度值 1
。
My problem is this:
I have div
with a background image, the opacity is 0
! When you hover over it the opacity becomes 1
, but I also want it to randomly show it some times. So I'm kind of looking for a way to randomly give this div
the opacity value 1
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以调整时间和机会来确定显示 ID 的频率。
You can adjust the times and chance to determine how frequently the id is shown.
类似的东西:
something like :
当然,它的
编辑:使其可配置时间范围,并添加了检查动画是否已完成的功能。设置以秒为单位而不是毫秒
Sure, it's
Edit: made it configurable for timeframe as well as added a check to see if animation has finished. Settings are in seconds instead of miliseconds