Advertisement
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.
Your Input Matters 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! |
||
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>
|