It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Could someone help me figure the problem in this game. It begins to lag. https://www.dropbox.com/s/3heopwz4s0stfz4/Spill.zip
lagging is due to a runtime error. always check if parent contains this at eFrame Handler.
Here is solution: Spill3
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Okay, I'm not sure how to Script this... but either in HTML or CSS is there a way to set a faster scrolling speed to any specific item?
Try using JS:
function pageScroll() {
window.scrollBy(0,50);
scrolldelay = setTimeout('pageScroll()',100);
}
<body onLoad="pageScroll()">
You can see an example here.
For a CSS solution (ie parallax), you can reference this post.
For more information see this answer.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I have a silly question but while coding a web page I'm confuse a little time defining the css class name. Would anyone provide me mostly used css class names so that I could not hesitate while making pages.
It would be okay if I got mostly used class while layout page.
I think some css-naming-conventions will help :)
you may start here and search google for more :
http://sixrevisions.com/css/css-tips/css-tip-2-structural-naming-convention-in-css/
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
the Adobe Flash program, giving the effect of a coordinate walking coordinate other format can I learn html5 code.
jQuery
$("div").animate()
Canvas
MDN tutorial https://developer.mozilla.org/en-US/docs/Canvas_tutorial
SVG
Raphael http://raphaeljs.com
d3.js http://d3js.org
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
how I can do something like that:
http://online.vodafone.co.uk/en_GB/assets/static/ipi_please_wait.gif
thanks
Go to http://www.ajaxload.info/ and generate your own ajax loader :)
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Is there anyway we can split mesh (exploding mesh effect) in java? Please give me code that is doing this.Thanks in advance
Check out this example in XNA, it uses a shader to achieve the effect you are looking for:
http://create.msdn.com/en-US/education/catalog/sample/shatter
Perhaps you can map the technique to something similar in Java