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.
为了设计 UI 页面,我使用 jCoverflip 进行图像轮播。这里的功能就像单击图像会将所选图像放大。
但我想通过鼠标悬停这个功能;我没有办法实现它。
您应该能够更改以下542行jquery.jcoverflip.js:
542
jquery.jcoverflip.js
this.element.click( proxy( this, this._clickItem ) );
至
this.element.mouseover( proxy( this, this._clickItem ) );