有没有办法编写一个控制 2 个 div 的鼠标悬停图像 [更大的图像和文本描述]
该设计需要一个包含不同角色缩略图的图像库,当您将鼠标悬停在缩略图上时,会出现更大版本的图像,并且在左侧的 div 中也会出现每个角色的标题和描述。
1)有没有办法让两个div都通过翻转来控制? (放大的图像和描述)
和
2)我需要如何将其与 cms 同步?
感谢您的阅读:)
the design calls for an image gallery with thumbnails for different characters and when u roll over a thumbnail a larger version of the image appears and in a div to the left with a header and description for each character also appears.
1) is there a way to have a rollover control both divs? (enlarged image and description)
and
2) how would i need to go about syncing this up with a cms?
thank you for reading :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
首先尝试这个,不确定您使用的是什么cms等,所以nfi如何回答该部分:
HTML:
CSS:
Try this for a start, not sure what cms you're using etc so nfi how to answer that part:
HTML:
CSS:
是的,将有关角色的信息存储在触发元素的 id 标签中。就像说它是米老鼠,id =“mickey”也许你正在使用原型...
然后函数 showInfo 显示具有较大图像和信息的 div
好吧..只是一个例子...
Yes, store information about the character in the id tag of the trigger element. Like say it is mickey mouse, id="mickey" maybe you are using prototype...
Then the function showInfo shows the divs that have the larger image and info
Well.. just an example...
使用 jQuery,这是未经测试的,但它会是这样的:
如果您需要从数据库中提取动态信息作为描述,只需查看 jQuery $.ajax 函数并将描述 HTML 设置为返回值。
Using jQuery, this is untested but it would be something like this:
If you needed to pull dynamic info from a database for the description, simply look at the jQuery $.ajax function and set the description HTML to the returned value.