slider

Javascript slide element

I want to know what's the best technique to slide an element just like in these examples: http://demos.flesler.com/jquery/localScroll/#section1c But with Pure Javascript so NOT jQuery or any library. Example structure <div id="holder"> <div id="bridge" onclick="slide('content')">Click to slide</div> <div id="content" sty...

jquery: Remove first easySlider instance and reinitiate a different one

I'm using easySlider and masonry but I'm having problems in using multiple instances of easySlider. What I'm trying to do is to remove the first instance of easySlider and then create a new instance that has new set of images. Here's a demo. But it doesn't seem to work correctly. When you click box#1 (CM Partners) the slider works gre...

javascript animation issue: wrong p tag fades in during animation and links don't hide as supposed to

Hey all, I have two problems with the below javascript that I'm not sure why they're not behaving expected as they should. I'm almost positive it should work but it doesn't. First, the left button doesn't hide when the left most p tag (the first one) for group1 is active even though it should, and the right button doesn't hide when the ...

Open flow with using a slider in ipad

I need a cover flow in the ipad.I have implemented the cover flow application using http://apparentlogic.com/openflow. But it uses mouse to flick the images. I need the same also using a slider. How can i do it??? ...

Where should I place my Easy Slider jQuery functions in my Wordpress theme?

I added Easy Slider to my Wordpress blog. The problem is that the buttons are even shown when there's a Page with no slider or pictures. I used to place this: $(document).ready(function () { //easy slider $("#slider").easySlider({ auto: true, continuous: true }); }); in a custom.js file which I placed in Wordpress's footer.php...

Flex 3 skinning the Datatip of a hslider component

Hello stackoverflowers, Does anybody know how to skin the datatip of a hslider component. I have created a 3 skins with degrafa. One for the track, one for thumb and one for the datatip. I had no problem attaching the skins for the track and thumb of the hslider component. But how can i skin the datatip? Does anybody know? DJ ...

How do I set the height of a wpf slider control's thumb ...

I want to put a slider in a datagrid cell and the row has a height of 20, so i'd like to make the height of the thumb of the slider smaller than that. I set the height of the slider itself, but the thumb appears to be cut off (i.e. it doesn't scale down to the height that I specify in the slider.height property). I don't want to have to ...

how to control selecttouislider control programmatically?

a question regarding the programmatic control of the SelectToUISlider: 'http://www.filamentgroup.com/lab/update_jquery_ui_slider_from_a_select_element_now_with_aria_support/' I want to have a play/pause button control this specialized jquery slider widget. normal use seems for the user to slide the control, but I'd like to provide both...

Android: Sliding button container widget

I am running out of room on my app for buttons, so I want to stick them into some sort of sliding container, like the one at the top of the Astro File Manager app. How do I go about doing this? I've Googled this and can't find anything. ...

Ajax Slider Rating System (not Star Rating)

I'm looking for a Ajax rating script similar to the one on metacritic, ign, gamespot, etc. (example) I've found only star rating systems and one slider that is not similar to the one that I'm looking for. (jquery ui slider) Anyone knows something like that I'm looking for? Otherwise I'm willing to pay someone for this work. ...

jQuery slider control for opacity

I'm trying to implement a jQuery slider control for opacity of a certain element on my web page. Kind of like this question but with a slider. I was wondering how I should implement this best, as I'm a little lost as how I should get started... I'm guessing a function wouldn't be the best, would it? Defining a function and then calli...

Can anyone tell me what's wrong with this switch statement (javascript)?

Hey all, its your typical slider - both automated and controlled by user click. Problem is when you click, if you are on last slide,it shouldn't show right arrow, and if you are on first slide, it shouldn't show left arrow. If you are anywhere else, it should show both arrows. However, when on last slide it still shows right arrow. Howev...

jQuery slider help

I am creating my own custom content slider and am wondering what the best way to go about it is using jQuery. I want to have two buttons next/previous. When the user clicks next the current slide will slide to the left and the new slide will show. How should I go about doing this in jQuery? I would use a plugin but they are so annoying...

jQuery slider as a timeline

I have just finished incorporating a jQuery accordian with a jQuery Slider. I.e. 3 pictures are displayed. The user can either use PREV or NEXT buttons to view the next/prev 3 images. They can also navigate through all the images with the slider. The next step is to make this slider look like a timeline. The left hand side needs to sta...

Simple Javascript Slider

Im trying to find a very very simple javascript slider. One that is the bare minimum, no fancy jquery, or other libraries involved. The simplest possible slider. With the minimum amount of code possible. Thanks for the attention! @ Roger Walsh: Below the HTML code: The .js and the .css are identical to the example in the tutorial you...

Rotating images

Hi all, Just wondering if someone can help me code the following. I want to use a fading effect to rotate a series of images (7 in total), within the CSS and code already defined below: <style="text/css"> .rotate {float: left;width: 160px;height: 215px;background-color: #FFFFFF;border: 2px solid #0066CC;margin: 0px 10px 10px 0px;text-...

Flash Slider Component With Decimal Value?

how do i set up a Flash CS5 Slider component to trace decimal values, from 0.00 to 10.00 when the slider is dragged? i can't seem to find where i need to set these options to permit decimals. is it possible to set this in ActionScript? ...

Problem with AnythingSlider when only having one post

Hi guys, I'm using AnythingSlider, but i get an error if i only have one slide item. It gives me this error: 'base.$navLinks' is null or not an object. The problem should be on line 149 in my jquery.anythingslider.js file. Which is the 3rd row in this bit of code: if (base.options.buildNavigation){ base.$nav.find('.cur').removeClas...

Is there a dual thumb slider (also known as a range slider) that responds to touch events?

YUI 3 just recently came out with touch event support for their slider, so that it can be manipulated using touch screens on mobile devices like iPhones and Android. However, it might be a while before there is a dual thumb slider (aka "range slider") made within the YUI 3 framework. Possibly it will take longer than the deadline for my...

How to delay a function inside a jQuery-ui slider event

I have several jQuery-ui range sliders on a page which add and remove rows in a table and show their values above the sliders, live as the sliders are slid. the function showData has to check and update every table row before it's done and the slide event doesn't seem to execute anything until the showData function has returned. This tab...