Advertisement

10.15.2008 at 09:34PM PDT, ID: 23819242
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.1

Getting javascript scrolling text to start scrolling when the page loads

Asked by gabrielPennyback in JavaScript, Jquery

This is a followup to another question: http://www.experts-exchange.com/Programming/Languages/Scripting/JavaScript/Q_23811100.html#a22717785.

How would I get the code below to start scrolling as soon as the page loads? Also how do I set it up so that the text doesn't appear until it starts scrolling? (Both for the button and the window.onload scenarios)

Thnaks!

John

Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="http://breezyandjoe.mediacoop.org/misc/devtests/mootools.js"></script>
<script type="text/javascript">
 
 
 
function go(){
  var min = $('textdiv').getSize().x * -1;
  var max = $('containingdiv').getSize().x;
  $('textdiv').get('morph').addEvent('complete',function() { 
    this.start({left:[max, min]});
  });
  $('textdiv').get('morph').setOptions({duration:35000, transition:Fx.Transitions.linear});
  $('textdiv').morph({left:[max, min]});
}
</script>
</head>
<body>
  <div id="containingdiv" style="width:890px;height:20px;margin:auto;border:1px solid black;overflow:hidden;">
    <div style="width:4000px;position:relative;">
      <div id="textdiv" style="position:absolute; font-size:12px; color:red; font-weight:bold">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."</div>
    </div>
 
  </div>
<input type="button" onclick="go()" value="Scroll" />
</body>
</html>
[+][-]10.15.2008 at 09:46PM PDT, ID: 22728150

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10.15.2008 at 09:50PM PDT, ID: 22728169

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: JavaScript, Jquery
Sign Up Now!
Solution Provided By: lakshmidurga
Participating Experts: 2
Solution Grade: A
 
 
[+][-]10.16.2008 at 08:12AM PDT, ID: 22731988

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10.16.2008 at 09:50AM PDT, ID: 22733140

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10.16.2008 at 04:41PM PDT, ID: 22736807

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10.16.2008 at 04:42PM PDT, ID: 22736814

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11.04.2008 at 01:49PM PST, ID: 22881242

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11.16.2008 at 08:03PM PST, ID: 22973306

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20081112-EE-VQP-44 / EE_QW_2_20070628