Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other What jquery plugin is used on jquery homepage Re: What jquery plugin is used on jquery homepage

#49971
Designer42
Participant

I am not sure what they are using. I don’t think it is a plugin. I looked at that same thing. I am assuming they are just hiding the div.jq-checkpointSubhead.
I think the effect is just built into the jQuery .js file already. Check out the CSS file. The div jq-checkpointSubhead is in there. Its styles are sorted out there. Then in the HTML, all the text and links are in there.
I was looking at doing that too. Now that you found the effect that helps me out too.
Here is the CSS I found in their document:
html.js div.jq-checkpointSubhead {
display: none;
}
body.jq-enhanced #jq-intro li div.jq-checkpointSubhead {
/*opacity: 0.0001;*/
position: absolute;
width: 253px;
height: 54px;
background: url(../images/bg_ctaTooltip.png) 0 0 no-repeat;
top: -1.5em;
left: -35%;
z-index: 100;
}
body.jq-enhanced #jq-intro li div.jq-checkpointSubhead p{
font-size: 1em;
padding: 10px 5px 0 50px;
color: #AE0001;
font-weight: bold;
line-height: 1.3em;
margin: 0;
cursor: pointer;
}