Sandra Schlichting
Sandra Schlichting

Reputation: 25996

Is this jQuery?

If you hover the images, an orange magnifier pops up.

http://disqus.com/features/

Clicking on the images opens a pop up.

Is that a jQuery plugin that does this and the orange magnifier on hover?

Upvotes: 2

Views: 190

Answers (3)

genesis
genesis

Reputation: 50976

No. it's just CSS's property (pseudo-class) :hover

Upvotes: 5

Paul
Paul

Reputation: 20061

You can see the css for that effect here: http://mediacdn.disqus.com/1308880185/css/marketing.css

Search for #feature-explorer ul li:hover .frame span

Upvotes: 1

Dogbert
Dogbert

Reputation: 222198

The magnifier is plain css :hover, while the popup is done using Facebox, which is a jQuery plugin.

Upvotes: 2

Related Questions