Current location: Hot Scripts Forums » General Web Coding » JavaScript » Problem!!!


Problem!!!

Reply
  #1 (permalink)  
Old 05-08-08, 01:02 PM
topest1 topest1 is offline
New Member
 
Join Date: May 2008
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Unhappy Problem!!!

I want to set a slider(like:www.smsgushup.com "login") at bottom left corner of my page
can any one help me?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #2 (permalink)  
Old 05-08-08, 03:05 PM
End User's Avatar
End User End User is offline
Level II Curmudgeon
 
Join Date: Dec 2004
Posts: 3,027
Thanks: 14
Thanked 35 Times in 33 Posts
Quote:
Originally Posted by topest1 View Post
I want to set a slider(like:www.smsgushup.com "login") at bottom left corner of my page can any one help me?
I'm familiar with the typical "right-to-left" dyslexia, but this is the first case of "up-to-down" dyslexia I've ever seen. And this is also the first case where I've one person who has them both.

Instead of "bottom left corner" of your page, perhaps you mean "top right corner" of your page?
__________________
I don't live on the edge, but sometimes I go there to visit.
-------------------------------------------------------------------------
Sanitize Your Data | Oracle Date & Substring Functions | Code Snippet Library | [url=http://www.codmb.com/Call Of Duty[/url]
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #3 (permalink)  
Old 05-08-08, 03:05 PM
Vicious's Avatar
Vicious Vicious is offline
Community VIP
 
Join Date: Jan 2007
Location: Belgium
Posts: 584
Thanks: 0
Thanked 0 Times in 0 Posts
Of course we can help you. As long as you show us you efforts. Otherwise this is a script request, and that's for another section
__________________
Jack Bauer makes Chuck Norris cry
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #4 (permalink)  
Old 05-09-08, 01:26 AM
topest1 topest1 is offline
New Member
 
Join Date: May 2008
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Rolleyes Slider Script

can u give me the script which I can add to set a slider
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #5 (permalink)  
Old 05-09-08, 02:59 AM
Vicious's Avatar
Vicious Vicious is offline
Community VIP
 
Join Date: Jan 2007
Location: Belgium
Posts: 584
Thanks: 0
Thanked 0 Times in 0 Posts
Since you're asking so nicely... not
javascript Code:
  1. var timerMove = null;
  2.  
  3. function moveDown(){
  4.     var items = document.getElementById("my_sliding_div");
  5.    
  6.     if (timerMove == null){
  7.         timerMove = window.setInterval(function(){
  8.             doMoveVertical(30,1,0,items);
  9.         },5);
  10.     }
  11. }
  12.  
  13. function moveUp(){
  14.     var items = document.getElementById("my_sliding_div");
  15.    
  16.     if (timerMove == null){
  17.         timerMove = window.setInterval(function(){
  18.             doMoveVertical(30,-1,-480,items);
  19.         },5);
  20.     }
  21. }
  22.  
  23. function doMoveVertical(step,sign,limit,items){
  24.     var curTop = items.style.top.replace("px","")*1;
  25.     if ((sign > 0 && (curTop < limit)) || (sign < 0 && (Math.abs(curTop) < Math.abs(limit)))){
  26.         items.style.top = (curTop + (sign*step)) + "px";
  27.     } else {
  28.         // stop moving:
  29.         window.clearInterval(timerMove);
  30.         timerMove = null;
  31.     }
  32. }

Don't expect support; I'm only giving this script because I had it right in front of me. Next time do us a favor, and either post in the script requests section, or show us you did an effort.
__________________
Jack Bauer makes Chuck Norris cry
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Pls help website problem! iangarrinud CSS 1 01-03-08 02:48 PM
login, roles problem dbrook007 ASP.NET 10 11-10-06 04:42 PM
Form Display Problem neevrap02 Visual Basic 1 09-05-06 06:18 AM
Count problem kasic ASP.NET 1 10-20-04 01:23 AM
Asp and Microsoft Access 2002 problem gop373 ASP 2 10-06-04 10:13 AM


All times are GMT -5. The time now is 11:54 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.