Предосмотр содержания темы при наведении курсора (c) Romych
В HTML верх:
Код:
<style type="text/css"> #prosmotr { position: absolute; z-index:1000; filter: alpha(opacity=90); opacity: 0.9; background-color: #ddd; border: 2px solid #ccc; width:580px; background-image: -webkit-linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,0)); background-image: -moz-linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,0)); background-image: -ms-linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,0)); background-image: -o-linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,0)); background-image: linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,0)); -moz-border-radius: 8px; border-radius: 8px; khtml-border-radius:8px; -webkit-border-radius:8px; -moz-box-shadow: 0 1px 2px rgba(0,0,0,.4), 0 1px 0 rgba(255,255,255,.5) inset; -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.4), 0 1px 0 rgba(255,255,255,.5) inset; box-shadow: 0 1px 2px rgba(0,0,0,.4), 0 1px 0 rgba(255,255,255,.5) inset; table-layout: auto !important;} #tema td {border-style: dotted none none dotted;padding:1px !important;} </style>
В HTML низ:
Код:
<script type="text/javascript"> $('div#pun-viewforum div.tclcon a').hover(function(){ poisk=$(this).attr('href'); zapros=poisk.slice(poisk.indexOf("viewtopic.php?id=")+17); $(this).append('<div id="prosmotr"><table id="tema" cellspacing="0" width=100%></table></div>'); $.get('export.php?type=rss&tid='+zapros,'',processTEMA); function processTEMA(data){ $(data).find('item:lt(10)').each(function(){ TAuthor=$(this).find('author').text().slice(14,-1); TLink=$(this).find('link').text(); TPosted=$(this).find('pubDate').text().slice(4,-5); TContent=$(this).find('description').text(); $('#tema').append('<tr><td width=15% style="color:#458B74;"><b>'+ TAuthor +'</b></td><td width=60%><a href="'+TLink+'">Ссылка на пост </a>'+TContent+'</td><td style="color:RoyalBlue">'+TPosted+'</td></tr>'); }); } }, function(){ $('div#pun-viewforum div.tclcon a').find('div:last').remove(); }); </script>