<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Web Wiz Support and Community Forums : item follows as page is scrolled</title>
  <link>https://forums.webwiz.net/</link>
  <description><![CDATA[This is an XML content feed of; Web Wiz Support and Community Forums : Web Wiz Forums : item follows as page is scrolled]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 06 Apr 2026 23:06:06 +0000</pubDate>
  <lastBuildDate>Fri, 19 Dec 2003 12:47:19 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.08</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forums.webwiz.net/RSS_post_feed.asp?TID=8218</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Web Wiz Support and Community Forums]]></title>
   <url>https://forums.webwiz.net/forum_images/web_wiz_forums.png</url>
   <link>https://forums.webwiz.net/</link>
  </image>
  <item>
   <title><![CDATA[item follows as page is scrolled : I found one in that list that...]]></title>
   <link>https://forums.webwiz.net/item-follows-as-page-is-scrolled_topic8218_post42279.html#42279</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=14301">civic3x98</a><br /><strong>Subject:</strong> 8218<br /><strong>Posted:</strong> 19&nbsp;December&nbsp;2003 at 12:47pm<br /><br /><P>I found one in that list that had the functionality that I was going for. Now my problem lies with some integration. </P><P>Below is my code. I am trying to make the scrolling txt float with the page as it scrolls.</P><P>Same effect as in this page: <A href="http://www.dynamicdrive.com/dynamicindex1/staticmenu.htm" target="_blank">http://www.dynamicdrive.com/dynamicindex1/staticmenu.htm</A></P><P>But replacing the floating item with something like this: http://www.dhtmlshock.com/scrollers/AutoScroll/default.asp</P><P>When I try and integrate them together the floating area with the auto-scrolling content sinks to the bottom of the page and you cant get to it.</P><P>Any idea?</P><P>CODE:</P><P>&lt;html&gt;<BR>&lt;head&gt;</P><P>&lt;STYLE type="text/css"&gt;&nbsp; <BR>#divASContainer{position:absolute; width:300; height:300; overflow:hidden; top:600; left:15; clip:rect(0,200,300,0); visibility:hidden; background-color: #FFFFFF} <BR>#divASContent{position:absolute; top:0; left:0; background-color: #ffffff} </P><P>&lt;/STYLE&gt;<BR>&lt;SCRIPT language="JavaScript"&gt;// begin absolutely positioned autoscroll area object scripts </P><P>&nbsp;</P><P>function verifyCompatibleBrowser(){ <BR>&nbsp;this.ver=navigator.appVersion <BR>&nbsp;this.dom=document.getElementById?1:0 <BR>&nbsp;this.ie5=(this.ver.indexOf("MSIE 5")&gt;-1 &amp;&amp; this.dom)?1:0; <BR>&nbsp;this.ie4=(document.all &amp;&amp; !this.dom)?1:0; <BR>&nbsp;this.ns5=(this.dom &amp;&amp; parseInt(this.ver) &gt;= 5) ?1:0; <BR>&nbsp;this.ns4=(document.layers &amp;&amp; !this.dom)?1:0; <BR>&nbsp;this.bw=(this.ie5 || this.ie4 || this.ns4 || this.ns5) <BR>&nbsp;return this <BR>} <BR>bw=new verifyCompatibleBrowser() <BR>lstart=120 <BR>loop=true&nbsp; <BR>speed=50 <BR>pr_step=1 <BR>function ConstructObject(obj,nest){ <BR>&nbsp;&nbsp;&nbsp; nest=(!nest) ? '':'document.'+nest+'.' <BR> &nbsp;this.el=bw.dom?document.getElementById(obj):bw.ie4?doc ument.all&#091;obj&#093;:bw.ns4?eval(nest+'document.'+obj):0; <BR>&nbsp;  &nbsp;this.css=bw.dom?document.getElementById(obj).style:bw. ie4?document.all&#091;obj&#093;.style:bw.ns4?eval(nest+'document.'+obj):0; <BR> &nbsp;this.scrollHeight=bw.ns4?this.css.document.height:this .el.offsetHeight <BR>&nbsp;this.newsScroll=newsScroll; <BR>&nbsp;this.moveIt=b_moveIt; this.x; this.y; <BR>&nbsp;&nbsp;&nbsp; this.obj = obj + "Object" <BR>&nbsp;&nbsp;&nbsp; eval(this.obj + "=this") <BR>&nbsp;&nbsp;&nbsp; return this <BR>} <BR>function b_moveIt(x,y){ <BR>&nbsp;this.x=x;this.y=y <BR>&nbsp;this.css.left=this.x <BR>&nbsp;this.css.top=this.y <BR>} <BR>//Makes the object scroll up <BR>function newsScroll(speed){ <BR>&nbsp;if(this.y&gt;-this.scrollHeight){ <BR>&nbsp;&nbsp;this.moveIt(0,this.y-pr_step) <BR> &nbsp;&nbsp;setTimeout(this.obj+".newsScroll("+speed+")",spe ed) <BR>&nbsp;}else if(loop) { <BR>&nbsp;&nbsp;this.moveIt(0,lstart) <BR>&nbsp;&nbsp;eval(this.obj+".newsScroll("+speed+")") <BR>&nbsp;&nbsp; } <BR>} <BR>//Makes the object <BR>function InitialiseAutoScrollArea(){ <BR>&nbsp;objContainer=new ConstructObject('divASContainer') <BR>&nbsp;objContent=new ConstructObject('divASContent','divASContainer') <BR>&nbsp;objContent.moveIt(0,lstart) <BR>&nbsp;objContainer.css.visibility='visible' <BR>&nbsp;objContent.newsScroll(speed) <BR>} <BR>// end absolutely positioned scrollable area object scripts </P><P>&lt;/SCRIPT&gt;</P><P>&nbsp;</P><P>&lt;/head&gt;<BR>&lt;body bgcolor="#ffffff" onLoad="InitialiseAutoScrollArea();"&gt;</P><P>&nbsp;</P><P><BR>&lt;table border="0" cellpadding="0" cellspacing="0"&gt;<BR>&nbsp;&nbsp;&lt;tr&gt;&lt;td&gt;&lt;img src="images/main_leftNav.jpg" width="226" height="439"&gt;&lt;/td&gt;&lt;/tr&gt;<BR>&nbsp;&nbsp;&lt;tr&gt;&lt;td align="middle"&gt;<BR>&nbsp;&nbsp;<BR>&nbsp;&nbsp;</P><P>&nbsp;</P><P>&nbsp;&nbsp;<BR>&nbsp;&nbsp;&lt;/td&gt;&lt;/tr&gt;<BR>&lt;/table&gt;<BR>&nbsp;&nbsp;<BR>&nbsp;&nbsp;&lt;script&gt;<BR>if (!document.layers)<BR>document.write('&lt;div id="divStayTopLeft" style="position:absolute"&gt;')<BR>&lt;/script&gt;</P><P>&lt;layer id="divStayTopLeft"&gt;</P><P>&nbsp;&nbsp;&lt;!-- begin absolutely positioned autoscroll area object--&gt; <BR>&lt;DIV id="divASContainer"&gt; <BR>&nbsp; &lt;DIV id="divASContent"&gt; <BR>&nbsp; &nbsp;<BR>&nbsp; &lt;!--- Includes file containing the title images---&gt;<BR>&nbsp;&nbsp;&lt;!--#include file="scrolling_quotes_txt.html" --&gt;<BR>&nbsp;&nbsp;&lt;!--- End ---&gt;<BR>&nbsp;<BR>&lt;/DIV&gt;<BR>&lt;/DIV&gt;<BR>&lt;!-- end absolutely positioned autoscroll area object --&gt; </P><P>&lt;/layer&gt;</P><P><BR>&lt;script type="text/javascript"&gt;</P><P>&nbsp;</P><P>//Enter "frombottom" or "fromtop"<BR>var verticalpos="fromtop"</P><P>if (!document.layers)<BR>document.write('&lt;/div&gt;')</P><P>function JSFX_FloatTopDiv()<BR>{<BR>&nbsp;var startX = 3,<BR>&nbsp;startY = 450;<BR>&nbsp;var ns = (navigator.appName.indexOf("Netscape") != -1);<BR>&nbsp;var d = document;<BR>&nbsp;function ml(id)<BR>&nbsp;{<BR>&nbsp;&nbsp;var el=d.getElementById?d.getElementById(id):d.all?d.all&#091;id&#093;:d.layers&#091;id&#093;;<BR>&nbsp;&nbsp;if(d.layers)el.style=el;<BR> &nbsp;&nbsp;el.sP=function(x,y){this.style.left=x;this.style .top=y;};<BR>&nbsp;&nbsp;el.x = startX;<BR>&nbsp;&nbsp;if (verticalpos=="fromtop")<BR>&nbsp;&nbsp;el.y = startY;<BR>&nbsp;&nbsp;else{<BR>&nbsp;&nbsp;el.y = ns ? pageYOffset + innerHeight : document.body.scrollTop + document.body.clientHeight;<BR>&nbsp;&nbsp;el.y -= startY;<BR>&nbsp;&nbsp;}<BR>&nbsp;&nbsp;return el;<BR>&nbsp;}<BR>&nbsp;window.stayTopLeft=function()<BR>&nbsp;{<BR>&nbsp;&nbsp;if (verticalpos=="fromtop"){<BR>&nbsp;&nbsp;var pY = ns ? pageYOffset : document.body.scrollTop;<BR>&nbsp;&nbsp;ftlObj.y += (pY + startY - ftlObj.y)/8;<BR>&nbsp;&nbsp;}<BR>&nbsp;&nbsp;else{<BR>&nbsp;&nbsp;var pY = ns ? pageYOffset + innerHeight : document.body.scrollTop + document.body.clientHeight;<BR>&nbsp;&nbsp;ftlObj.y += (pY - startY - ftlObj.y)/8;<BR>&nbsp;&nbsp;}<BR>&nbsp;&nbsp;ftlObj.sP(ftlObj.x, ftlObj.y);<BR>&nbsp;&nbsp;setTimeout("stayTopLeft()", 10);<BR>&nbsp;}<BR>&nbsp;ftlObj = ml("divStayTopLeft");<BR>&nbsp;stayTopLeft();<BR>}<BR>JSFX_FloatTopDiv();<BR>&lt;/script&gt;<BR>&lt;/body&gt;<BR>&lt;/html&gt;</P>]]>
   </description>
   <pubDate>Fri, 19 Dec 2003 12:47:19 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/item-follows-as-page-is-scrolled_topic8218_post42279.html#42279</guid>
  </item> 
  <item>
   <title><![CDATA[item follows as page is scrolled : go to dynamicdrive.com, it should...]]></title>
   <link>https://forums.webwiz.net/item-follows-as-page-is-scrolled_topic8218_post42227.html#42227</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=14201">tlp2k</a><br /><strong>Subject:</strong> 8218<br /><strong>Posted:</strong> 19&nbsp;December&nbsp;2003 at 8:03am<br /><br />go to dynamicdrive.com, it should be in the list...or try this one:<br>http://dynamicdrive.com/dynamicindex1/sm/index.htm<br><br><br>]]>
   </description>
   <pubDate>Fri, 19 Dec 2003 08:03:01 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/item-follows-as-page-is-scrolled_topic8218_post42227.html#42227</guid>
  </item> 
  <item>
   <title><![CDATA[item follows as page is scrolled : Hello all, I have an item on...]]></title>
   <link>https://forums.webwiz.net/item-follows-as-page-is-scrolled_topic8218_post42222.html#42222</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=14301">civic3x98</a><br /><strong>Subject:</strong> 8218<br /><strong>Posted:</strong> 19&nbsp;December&nbsp;2003 at 7:29am<br /><br /><P>Hello all,</P><P>I have an item on my web page that I want to follow down the web site as I scroll the page. I am pretty sure this is done in either JS or DHTML. I am not sure what it is called so I dont know what to search for. Any help would be great! -Thanks</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Fri, 19 Dec 2003 07:29:28 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/item-follows-as-page-is-scrolled_topic8218_post42222.html#42222</guid>
  </item> 
 </channel>
</rss>