Questions tagged [scroller]
248 questions
1
vote
1 answer
Using CSS3 to make a smooth slow scroll
Basically I have a banner of images which are to scroll from left to right. I have it working fine with jQuery (code pasted below) however it can be very jittery and the client wants it smoother. So after some research the best way is to use CSS3…

Robbo
- 2,116
- 1
- 19
- 21
1
vote
1 answer
Spark scrollbar space should be preserved
i am building a AS3-Class extending SkinnableContainer. Vertical scrolling only.
public class Part extends SkinnableContainer {
public function Part() {
var scroller : Scroller = new Scroller();
scroller.percentHeight = 100;
…

Markus Rossler
- 143
- 9
1
vote
2 answers
How to use scroller containing two forms in adobe flex?
I have layout with two forms. I'm using scroller but scrollbars don't align to window but appear somewhere in the middle of the application screen.

pixel
- 24,905
- 36
- 149
- 251
1
vote
2 answers
Javascript: Delete conflict from two equal script instance
i make a simple scroller but when i create the second scrooler, the first stop working, the code is here http://jsfiddle.net/3aZLE/3/
Thanks so much

Geme
- 354
- 2
- 3
- 13
1
vote
1 answer
Centering text in a touch scroller
I modified a version of the iScroll touch scroller. It was modified based on the carousel demo in the sample file when you download the library.
I need to center the text that is displayed when you scroll through each item and when it hits the end…

Chamilyan
- 9,347
- 10
- 38
- 67
1
vote
3 answers
Horizontol Scrolling View in Android
I want to create a Horizontol Scrolling View in Android. The view would be a combination of images and text scrolling horizontally and I should be able to dynamically modify the content(text and images) in the Scroller
Any ideas?

user669231
- 1,371
- 3
- 18
- 27
1
vote
2 answers
How to force Scroller scrollbars to overlap content in Flex 4.0
I have the following spark Scroller
…

sdagkas
- 578
- 1
- 5
- 20
1
vote
2 answers
android scrollview animation
I am trying to animate a Scrollview.
Particularly the SmoothScrollTo(x,y) function. Any ideas on how I go about this.
Thanks
ScrollView scroller = (ScrollView) findViewById(R.id.scroller);
if(true){
scroller.smoothScrollTo(0,30);
…

Switch
- 131
- 2
- 4
- 13
1
vote
1 answer
Jquery Vertical content scroller
I am currently working on creating a vertical scroller and have got so far but have got stuck on some of the functionality
My HTML looks like this
1
vote
1 answer
Vertical scrolling news modules for Joomla 1.5
How can I get a free vertical scrolling news modules for Joomla 1.5?

Ramesh
- 94
- 2
- 10
1
vote
1 answer
Android scroller fling
I hava a problem with a scroller.
@Override
public boolean onTouchEvent(MotionEvent ev) {
Log.d(TAG, "compute: " + mScroller.computeScrollOffset());
mScroller.fling(0, 0, 0, 1000, 0, 0, 0, 2000);
invalidate();
...
But i can't…

user638289
- 11
- 3
1
vote
1 answer
hide autocomplete (suggestions ) list when scrolling in antd modal / react
when I started writing on an input field in a simple form it displays an auto suggestion list of old data (autocomplete), when the (window scroll) it disappear and every thing is working fine.
but when I put the input field in antd modal which…

Dalal Mansour
- 197
- 5
- 14
1
vote
3 answers
How to start from a specific scroll position when using vue js vue-virtual-scroller plugin?
I'm using Akryum/vue-virtual-scroller plugin on different tabs, how can i force vue-virtual-scroll to start from a specific scroll position programatically ?

stackov
- 71
- 12
1
vote
0 answers
How to add a scroll bar to the wxpython window, you can look at the two vertical grids
I have two grid tables in my program, but I can only see one without scroll bar. I saw it on the Internet with Boxsizer, but after I tried it, the window of gird became very small. The table is not clear. Below is the code. I am not familiar with…

David
- 209
- 2
- 12
1
vote
0 answers
Add scrollbars in wxpython, but it doesn't appear
I saw a lot of scrollbars on the web, but my situation is different, with more wx.FlexGridSizer objects.The scoller dosen't appear.
class MPL_Frame(wx.Frame):
"""MPL_Frame可以继承,并可修改,或者直接使用"""
# global task
def __init__(self,…

David
- 209
- 2
- 12