Very nice module! In one of our projects we needed Hover preview for showing images in different articles in ´Views´. But we needed this particular feature: To show the image only when hovering over the teasertext. The solution we did was to rewrite the output of the teasertext with [field_image] & [field_teaser]. The show/hide effect we did with CSS - the image is hidden and appears only when hovering over the teasertext (.views-row a:link = teasertext).

#content .views-row a:link img{
display: none;
}
#content .views-row a:hover img{
display: block;
}
Maybe this could be used as an idéa in further development.
Regardings from Kruse, Denmark

Comments

Krucial’s picture

Assigned: Krucial » Unassigned