The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Hover pop up?

+2
Sanket
CodyDeathHammer
6 posters

Go down

Solved Hover pop up?

Post by CodyDeathHammer Sat 12 Jan - 15:50

How to make this effect. When you put the mouse on some of the pictures it pops up. Example link here. http://www.legendsofthespiral.com/?page=1 Can you help me?
CodyDeathHammer
CodyDeathHammer
Forumember

Male Posts : 147
Reputation : 1
Language : English

Back to top Go down

Solved Re: Hover pop up?

Post by Sanket Sat 12 Jan - 18:10

Which images do you want this effect to be added to? Any random image you add to the post?
Sanket
Sanket
ForumGuru

Male Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai

Back to top Go down

Solved Re: Hover pop up?

Post by Cassius Dio Sat 12 Jan - 22:35

Hi,

Code for all the images from forum:
Code:
img:hover {
-webkit-animation-name: pulse;
-webkit-animation-duration: .5s;
-webkit-animation-direction: alternate;
-webkit-animation-timing-function: ease-in-out;
-webkit-transform: rotate(-15deg) scale(1.5);
-moz-transform: rotate(-15deg) scale(1.5);
-o-transform: rotate(-15deg) scale(1.5);
}

Code only for images from posts:
Code:
.postbody img:hover {
-webkit-animation-name: pulse;
-webkit-animation-duration: .5s;
-webkit-animation-direction: alternate;
-webkit-animation-timing-function: ease-in-out;
-webkit-transform: rotate(-15deg) scale(1.5);
-moz-transform: rotate(-15deg) scale(1.5);
-o-transform: rotate(-15deg) scale(1.5);
}
Cassius Dio
Cassius Dio
Forumember

Male Posts : 581
Reputation : 79
Language : Romanian &English
Location : Yellow Submarine

http://beatles.forummo.com/

Back to top Go down

Solved Re: Hover pop up?

Post by CodyDeathHammer Sun 13 Jan - 1:51

I want all the buttons to pop up. This is the link for my forum http://journeyintothespiral.forumotion.com/
CodyDeathHammer
CodyDeathHammer
Forumember

Male Posts : 147
Reputation : 1
Language : English

Back to top Go down

Solved Re: Hover pop up?

Post by Sanket Sun 13 Jan - 4:36

Add this to your css & check please.
Code:
img:hover{
transform: rotate(-15deg) scale(1.5) !important;
}
Sanket
Sanket
ForumGuru

Male Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai

Back to top Go down

Solved Re: Hover pop up?

Post by CodyDeathHammer Sun 13 Jan - 17:03

No all the images are still poping up. I just want the buttons like forum, community ect.
CodyDeathHammer
CodyDeathHammer
Forumember

Male Posts : 147
Reputation : 1
Language : English

Back to top Go down

Solved Re: Hover pop up?

Post by Sanket Sun 13 Jan - 18:39

First you said you want all the buttons to popup, hence i gave that code.

Please list the exact image types that you want to have this effect.
Sanket
Sanket
ForumGuru

Male Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai

Back to top Go down

Solved Re: Hover pop up?

Post by CodyDeathHammer Sun 13 Jan - 18:58

Yea i am sorry. The pictures i want to pop up are: Portal, forum, faq, search, members, groups, profile, message and log out.
CodyDeathHammer
CodyDeathHammer
Forumember

Male Posts : 147
Reputation : 1
Language : English

Back to top Go down

Solved Re: Hover pop up?

Post by Sanket Mon 14 Jan - 10:28

Add this & check if its working?
Code:
a img:hover {
    transform: rotate(-15deg) scale(1.5) !important;
}
Sanket
Sanket
ForumGuru

Male Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai

Back to top Go down

Solved Re: Hover pop up?

Post by Mati Mon 14 Jan - 12:27

Add this to your css:

Code:
.mainmenu:hover img {
    transform: rotate(-15deg) scale(1.5);
}
Mati
Mati
Active Poster

Posts : 1932
Reputation : 333
Language : HTML, CSS & JavaScript
Location : Forum Services

https://fm-focus.forumotion.com/

Back to top Go down

Solved Re: Hover pop up?

Post by The Lone Ranger Mon 14 Jan - 19:22

Matti_7 wrote:Add this to your css:

Code:
.mainmenu:hover img {
    transform: rotate(-15deg) scale(1.5);
}

Works great! Thanks Matti! Very Happy
The Lone Ranger
The Lone Ranger
Forumember

Male Posts : 443
Reputation : 37
Language : English
Location : Scotland

http://www.tenerifesforumoffun.com

Back to top Go down

Solved Re: Hover pop up?

Post by CodyDeathHammer Mon 14 Jan - 20:49

Sanket wrote:Add this & check if its working?
Code:
a img:hover {
    transform: rotate(-15deg) scale(1.5) !important;
}
Yea it worked but The header is hovering. I don't want it to. Please help.
CodyDeathHammer
CodyDeathHammer
Forumember

Male Posts : 147
Reputation : 1
Language : English

Back to top Go down

Solved Re: Hover pop up?

Post by The Lone Ranger Mon 14 Jan - 21:04

Use matti_7s code.
The Lone Ranger
The Lone Ranger
Forumember

Male Posts : 443
Reputation : 37
Language : English
Location : Scotland

http://www.tenerifesforumoffun.com

Back to top Go down

Solved Re: Hover pop up?

Post by CodyDeathHammer Mon 21 Jan - 1:31

Thanks matt but all i need now to hover is the buttons like edit and quote and stuff in post. I just want them to pop up but with no rotate.
CodyDeathHammer
CodyDeathHammer
Forumember

Male Posts : 147
Reputation : 1
Language : English

Back to top Go down

Solved Re: Hover pop up?

Post by Sanket Mon 21 Jan - 4:09

Add this to your css.
Code:
.post-options img:hover {
    transform: scale(1.5) !important;
}
Sanket
Sanket
ForumGuru

Male Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai

Back to top Go down

Solved Re: Hover pop up?

Post by CodyDeathHammer Mon 21 Jan - 20:50

Thanks allot to everyone who helped me and i appreciate it. Everything is how i want it to be now. Thanks. Mods you can close now.
CodyDeathHammer
CodyDeathHammer
Forumember

Male Posts : 147
Reputation : 1
Language : English

Back to top Go down

Solved Re: Hover pop up?

Post by SLGray Mon 21 Jan - 21:26

Topic Solved & Locked


Hover pop up? Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51554
Reputation : 3524
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum