Questions tagged [sliding]
392 questions
3
votes
2 answers
Scala's collection's sliding() is inconsistent when the window size is greater than step
This is Scala collection API's sliding():
/** Groups elements in fixed size blocks by passing a "sliding window"
* over them (as opposed to partitioning them, as is done in grouped.)
* @see [[scala.collection.Iterator]], method `sliding`
…

pathikrit
- 32,469
- 37
- 142
- 221
3
votes
1 answer
Conditional mean by rolling
Data flag
2017-01-01 17.2 False
2017-01-02 17.0 False
2017-01-03 16.8 False
2017-01-04 18.3 False
2017-01-05 19.1 True …

Lcy
- 335
- 2
- 3
- 10
3
votes
2 answers
Android sliding effect animation
First of all I am completely new to animation on android but would like to include it in my next application. The application will be as follows:
For example, I will be having 2 layers, each one containing their own data.
Layer 1 will contain data…

Yash
- 2,259
- 4
- 26
- 33
3
votes
1 answer
ViewPager - vertical and horizontal implementation at the same time
Is it possible to do sliding among Fragments horizontally as well as vertically in the same FragmentActivity?
Let's say I have 4 fragments A, B, C and D.
I want A and B to be able to slide between each other horizontally and A with C or B with D…

Matcoil
- 890
- 11
- 23
3
votes
2 answers
Redis Cache - Native support for Sliding Expiration
Does Redis support sliding expiration natively? If not, what is the best workaround?
Thanks,
Pavan.

Tech Solver
- 513
- 1
- 5
- 16
3
votes
1 answer
CSS sliding underline on hover - color transition does not work on a visited link
I created a navigation that underlines the links on hover (sliding underline starting from the middle going outward) and also transforms the link from a dark green to a lighter green. This works totally fine except when one of the links has been…

Daniel Whittaker
- 31
- 3
3
votes
2 answers
Android sliding items horizontal like in Duolingo App
I was playing around try to implement sliding functionality like in Duolingo Activity with horizontal lessons list. The link to screen capture of this functionality LINK.
With horizontal slider the sliding has no such effects. What will be the…

RenatoIvancic
- 1,798
- 3
- 21
- 36
3
votes
2 answers
Bootstrap carousel not sliding on iphone
I'm building a responsive webpage with bootstrap plugin. Everything works fine in desktop browsers, even in low resolution and toggle device mode (chrome). But when i open the page on chrome or safari, on my iphone, the carousel just don't slide. It…

Gerardo
- 41
- 1
- 4
3
votes
2 answers
How is HTML section sliding done
I am curious on how is the sliding section on http://www.wearebeef.co.uk/ done?
I have tried Googling but I cant really find a way how it is done.

kianmeng
- 507
- 1
- 4
- 7
3
votes
2 answers
How can I make a horizontal sliding calendar in android eclipse?
Hw to make a horizontal sliding calendar in android eclipse? Something like the image below:

inn
- 237
- 2
- 5
- 12
3
votes
2 answers
How to not fully hide menu using ECSlidingViewController?
Am using ECSlidingViewController class to show sliding menu=) i want show always a part of menu. Question is how to not fully hide menu?

Alex Kraev
- 199
- 1
- 12
3
votes
1 answer
Sliding menu gesture overwrites the scrollable gesture of a graph gesture-android
I am using a sliding menu from here in my application. My app also has a GraphView in which I set some data in real time. The graph is a linear graph which is scrollable, to the left and to the right. But, having the sliding menu by a left to right…

phedon rousou
- 1,740
- 5
- 17
- 24
3
votes
2 answers
I am looking for an algorithm to solve a "sliding puzzle", the kind of puzzle where you have an image broken into 16 pieces in a 4x4 frame
I am looking for an algorithm to solve a "sliding puzzle", the kind of puzzle where you have an image broken into 16 pieces in a 4x4 frame, that you try to reassemble for a scrambled starting position.
This particular puzzle has a restriction, the…

freman1952
- 85
- 1
- 1
- 4
3
votes
1 answer
Android - Sliding Fragments
I'm trying to implement the sliding animation to transit from fragment1 to fragment2.
I'm using setCustomAnimations method. And I understand I need to use the frame method in order to replace fragments.
My code:
package…

Shubham Saini
- 738
- 3
- 8
- 18
3
votes
1 answer
Left/right sliding menu
I have this menu that's basically an horizontal items sliding bar. All menu items have specific default css properties. I want the items to change their size and left/right margins when they reach the center of the main container and reset to the…

Pedro
- 573
- 5
- 16