Questions tagged [sliding]

392 questions
0
votes
1 answer

Modifying Cocos2D Sliding Menu Grid adding an extra BUY ME button

I am trying to use SlidingMenuGrid code inside my app and changing a bit the beahaviour. The thing is I am a bit stuck. In Brandon Reynolds's blog you can find a sample project with the menu which is great. I am very greatful to him for sharing his…
mm24
  • 9,280
  • 12
  • 75
  • 170
0
votes
2 answers

Sliding Page Transitions

I want to have a site that slides between pages but everything I've found regarding sliding page transitions is for single page sites. For certain SEO and marketing purposes I would rather have multiple pages that would slide on page load is this…
0
votes
3 answers

Sliding Image in Xcode

In my app I have a button. I would like to be able to tap that button and then have it move to a point on the screen. However, I would also like the image to slide to the point rather than just appearing there. Any way I could do this? At this…
0
votes
1 answer

jQuery Animating divs to show full image, overlapping content and not moving content down

basically what I have is 4 divs, that each start at a set height and when you mouseover them, they animate to make the div taller, thus showing the background image in full rather than just a sneak peak of the image as shown originally. You can take…
BN83
  • 902
  • 3
  • 9
  • 29
0
votes
1 answer

Downloading images from server and showing it in a scrollview

I have an array of urls of images, from which i have to first download the images then show in sliding. But i want to download images asynchronously. I am using 3 images at a time like in the below code : var imageViewArray = []; var…
ekjyot
  • 2,247
  • 7
  • 39
  • 63
0
votes
1 answer

marginTop vs marginBottom on a each loop for Jquery

Hi people I already implementing a movile fixed menu to my site based on jquery but i have a little problem with marginTop and marginBottom inside on a each sentence, the marginBottom is not working it seams like something is missing , plz check…
user1450164
  • 1
  • 1
  • 1
0
votes
2 answers

JQuery tabs dynamic content with on click fadeout+fadein and slide without UI

I am absolutely beginner in JQuery (but I've some knowledge about JS and programming on other languages) I have 2 aims: very simple tabs (or anything for controls), on click with old (active) tab content fading out and then clicked tab content…
user1163487
0
votes
1 answer

html5 sliding independent page transition for desktop website

I am trying to program a website with multiple independent pages and I would like to use the slide transition effect between pages as it can be done with the jquery mobile Framework but WITHOUT using this one. My goal is to make a desktop web site…
Andrew
  • 1
  • 1
  • 1
0
votes
2 answers

WPF Sliding Window

Does anyone know the correct definition for a "sliding window" in WPF? What I have in mind is like the "Pending Changes" or "Call Stack" window in Visual Studio - where you click it and it slides up, and then you move your mouse away and it slides…
theqs1000
  • 357
  • 3
  • 7
  • 18
0
votes
1 answer

Sliding page transitions with jquery

I am working on a simple project that displays some of a clients work in a full-screen style page. When I click a link, a project loads and displays at 100% width and height. I have a link to the previous and next project on the page, but I need the…
jcbfshr
  • 161
  • 1
  • 2
  • 12
-1
votes
1 answer

Using animations in android

I am making an android application that needs to display a sliding animation as seen on the Samsung Omnia, this will bring up a linearlayout once it is visible(When the user drags the linearlayout out). I am getting an error at the final…
user1183066
  • 115
  • 2
  • 6
  • 20
-1
votes
3 answers

I need to run specific code for 3 times only in javascript

I need to animate a sliding with jquery. but only for 3 times. I wrote this code. But this more than 3 times. Please help me to fix or give different codes. Thanks in advance. $(document).ready (function () { var i=0; while (i<3) { …
Theepan K.
  • 355
  • 3
  • 5
  • 11
-1
votes
1 answer

What is the time complexity of this code? lengthOfLongestSubstring

Could you please help me with the time complexity of the code below? This is a leet code problem - the function should take a string as input and return the length of the longest substring with non-repeating characters: input "abcabcbb" returns 3…
89Tr34Ve
  • 23
  • 5
-1
votes
1 answer

The number of a sliding window for each element in the list of number?

Let L be a list of numbers as [7,9,0,3,5,2]. When creating a sliding windows of stride 1 and size 3 I have the following windows : (7,9,0) (9,0,3) (0,3,5) (3,5,2). My question is if there is a simple formula to give the number of windows for each…
ZchGarinch
  • 295
  • 3
  • 13
-1
votes
1 answer

C#: Adding value inside a given (busy) index pushing the other values to the right

I'm looking for a method to satisfy the need to insert a value in a index and if that index is busy all the next values of the array will slide down: char[] myArray = new char[5]; myArray[0] = 'a'; myArray[1] =…