Change scroll speed of specific element [closed] - html

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.

Related

Add a drop-box html tag in enyo [closed]

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 added a drop-down-list tag to my enyo code, but I'm not getting how to set the values inside it:
{tag:"select", classes:"myClass", components:[tag:"option"]}
How do I add options?
If that is a direct c&p, then the problem is your components array declaration. It needs to be an array of objects, so something like:
...components: [
{tag: "option"}
]
...

Creating tabs in HTML only [closed]

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.
Is there is a basic way to create multiple content tabs in an HTML page without CSS and/or Javascript and/or JQuery?
I do not think it is possible. JQuery would be my best bet at doing it since implementation is easy. you can have a look at JQUERYUI. There are other javascript library that can help you easily achieve what you want. My next choice would be CSS

How to create color custom scrollbar in pure css? [closed]

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.
Hi i am trying to create a custom scrollbar in css but I am not able to make it?
Can anybody help me ?
It is not possible to do this cross-browser with plain CSS.
As #tea-totaler has mentioned, it is however possible in Google Chrome.
It is however possible to do this using javascript/jQuery.
Here is a helpful article containing links to 10 different jQuery Custom Scrollbars:
http://www.net-kit.com/jquery-custom-scrollbar-plugins/

How to show grid in navigator with 960gs? [closed]

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.
I try to use 960gs and I compare it with Blueprinter . So I would like to know if it is possible to show grid in 960 gs .
for example in blueprinter we add showgrid
thanks
I don't believe there is a built in way to show the grid, though you can use the bookmarklet: 960gridder. Hope that helps.

What is an inner page? [closed]

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.
And can you provide some examples?
From my understanding, an inner page is the page with the content, like the content div in the html, am i wrong?
It is hard to say without context, but it could refer to a page loaded inside a frame or to a page that is not the homepage for a website.