在 GWT 中实现我自己的幻灯片画廊的优势?
我在问自己如何使用 GWT 编写我的幻灯片库。假设 GWT 提供捆绑图像(以及与图像和缓存相关的其他优化),我是否应该证明此类功能的实现是合理的?如果是,使用提供 HTML5 和 CSS3 的新功能是否会有趣? Tkx。
I am asking myself about coding my slideshow gallery with GWT. Should I justify the implementation of a such functionality assuming that GWT provides bundle image (and other optimizations related to images and cache) ? If yes, should it be interesting to use new functionalities that offers HTML5 and CSS3 ? Tkx.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,在 GWT 中制作幻灯片画廊绝对有意义。您可以构建自己的自定义功能,这些自定义功能在预打包的幻灯片中不可用,例如在后台预取下一张图像,使用 ResourceBundle/ImageBundle 获取缩略图列表,这有助于随机选择。这并不是那么有趣,因为 GWT 让它变得非常简单。
您还可以进行图像转换(动画)以使其看起来更漂亮...这一切都内置于 GWT 中。
Well, it definitely makes sense to do a slideshow gallery in GWT. You can build in your own customizations that aren't available in pre-packaged slideshows such as pre-fetching the next image in the background, using ResourceBundle/ImageBundle to get a list of thumbnails which is handy for random selection. It's not that interesting since GWT makes it really easy.
You can also do image transitions (animate) to make it look nice... This is all built into GWT.