Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请参阅此参考 URL以更好地了解我的意思,我在描述事物时很垃圾。
基本上,您可以看到,有一个“主要”图像和 5 个“拇指”图像。我的客户想要的是每次有人将鼠标悬停在“拇指”图像之一上时都会改变“主要”图像。
因此,例如,如果有人将鼠标悬停在第三个拇指上,主图像将变为该拇指的完整尺寸版本......
那有意义吗?
我正在使用 Wordpress,所以我不知道是否有人知道有类似功能的插件。
只是做这样的事情?
$('.thumb').mouseenter(function() { $('#main').attr('src' , $(this).attr('src')); });