Surya wrote:
>
> Ah great :-)
> I'll try it- but where ;-)
>

OK first note that my solution does not *automatically* make all links show 
popups. You must manually specify the individual links that should do so, 
i.e it is used like so;

lorem impsum <<hoverlink "hey there">> lorem ipsum

I.e, the div defined above is put in a macro called e.g "hoverlink" like so:

title: hoverlink/macro
tags: $:/tags/macro
text:
\define hoverlink(title)
<div class="hover-to-show">
   [[$title$]]
   <span class="hover-to-show-inner">
      <$transclude tiddler="""$title$""" mode=block/>
   </span>
</div>
\end

In addition you need a stylesheet for the styles above:

title: hoverlink/stylesheet
tags: $:/tags/Stylesheet
type: stylesheet (...or whatever that type name is that you see when you 
select from the "type" dropdown in edit mode)
text:
.hover-to-show {
 display:inline;
}
.hover-to-show-inner {
 display:none;
}

.hover-to-show:hover .hover-to-show-inner {
 position:absolute;
 display:block;
 width:150%;
 margin-left:-155%; margin-top:-1.5em;
 background:white;
 border:1px solid silver;
 border-radius:4px;
 /* ...etc... */
}


Hope this helps. But again, you'll manually have to macrocall the 
individual links as explained above.


<:-)

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/7ecffc17-6cf4-43e7-a4a0-7d0f8c41e154%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to