更新图像而不闪烁 ASP.NET C#
我正在编写一个网站,该网站的页面必须显示图像。该图像是由 HttpHandler 使用查询字符串命令创建的,如何才能使其正常工作而不会出现任何闪烁?
提前致谢,如果您需要一些代码,我很乐意分享!
Im writing a web site which has a page that must show an image. This image is created by an HttpHandler using querystring commands, how can I make this works without any kind of flickering?
Thanks in advance, if you need some code Im happy to share it!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 2 个 UpdatePanel,并在每次“重新加载”后切换它们:
然后您甚至可以使用 JS 从 Panel1->Panel2 平滑淡入淡出(请参阅 HERE 或更容易使用 jQuery fadeIn() 和fadeOut())。
You could use 2 UpdatePanels and switch them after each "reload":
You then could even make a smooth fading from Panel1->Panel2 using JS (see HERE or easier with jQuery fadeIn() and fadeOut()).
我在一个项目中使用了以下代码,我遇到了类似的问题。也许这可以帮助解决您的问题。
预加载图像后,过渡非常流畅。
ps我不记得我从哪里得到这个,所以我不能给予信任。对不起。
I used the following code for a project, where I had a similar problem. Maybe this can help solve your issue.
After preloading the images, the transition was very smooth.
p.s. I don't remember where I got this, so I can't give credit. Sorry.