
Sliding Boxes and Captions with JQuery One Mighty Roar Jarek Kubicki ArtistMore Work Kamil Smala ArtistMore Work Martin Stranka PhotographerMore Work Florian Nicolle Graphic DesignerMore Work The Nonsense Society Art, Music, WordWebsite Démo en ligne Retour au tutoriel pour savoir comment réaliser cela ! SlidesJS, a responsive slideshow plug-in for jQuery (1.7.1+) with features like touch and CSS3 PageSlide: a jQuery plugin which slides a webpage over to reveal an additional interaction pane Advertisement a jQuery plugin which slides a webpage over to reveal an additional interaction pane by Scott Robbin Download PageSlide Now If you've ever used the mobile version of Facebook, or Path,then you've probably seen something akin to PageSlide in action. Clicking on a button or link slides the page over to reveal a hidden pane,one that usually contains secondary navigation, a form, or additional information. There are several ways to use PageSlide, some of which are shown below.Additionally, there is a responsive demo which shows how PageSlide can be used as a mobile solution. Slide to the right, and load content from a secondary page Slide to the left, and display hidden content from this page in a modal pane Modal This slide uses "modal" option set to "true". Where can I get it? If you are interested in learning more about PageSlide, it's recommended that you view the project on GitHub. Other jQuery Plugins If you like this plugin, feel free to check out some of the others I've built.
ResponsiveSlides.js · Responsive jQuery Slider & Slideshow Table with details in AngularJS slick - the last carousel you'll ever need Set up your HTML markup. <div class="your-class"><div>your content</div><div>your content</div><div>your content</div></div> Move the /slick folder into your project Add slick.css in your <head> <link rel="stylesheet" type="text/css" href="slick/slick.css"/> // Add the new slick-theme.css if you want the default styling <link rel="stylesheet" type="text/css" href="slick/slick-theme.css"/> Add slick.js before your closing <body> tag, after jQuery (requires jQuery 1.7 +) Initialize your slider in your script file or an inline script tag When complete, your HTML should look something like: NOTE: I highly recommend putting your initialization script in an external JS file. Set up your HTML markup. <div class="your-class"><div>your content</div><div>your content</div><div>your content</div></div> Move the /slick folder into your project Add slick.css in your <head> Add slick.js before your closing <body> tag, after jQuery (requires jQuery 1.7 +) When complete, your HTML should look something like:
jquery - Angular animation WOW : jQuery Slider w/o Coding : jQuery Slideshow 10 Best Responsive Content Sliders for Develoepers Use of Responsive content sliders is getting more and more popular amongst developers as they enable website designers to display content in a more organized and interesting manner while still maintaining their creative design over the orthodox slider design. Most image and content sliders are customizable and provide features and options that enhance the look and feel of a website. In this article I have gathered 10 best responsive content sliders which will help you to organize your website data and let you achieve stunning creative looks for your websites. 1. Swiper is a beautiful content slider that is built for mobile and works pretty fast as it uses hardware accelerated transitions (if available). 2. Gallery CSS is a content slider that is built with HTML-CSS and without any JavaScript. 3. 4. AnythingSlider is an attempt at bringing together the functionality of “featured content” slider, “start/stop slider“, “moving boxes“ and adding new features. 5. jQuery Slider Shock 6. 7. 8.
RoyalSlider - Touch-Enabled Image Gallery and Content Slider Plugin Features of jQuery version Modular Script architecture allows you to create your own version of the script using online tool and include in build only features that you need. Touch-friendly Touch navigation for slider and thumbnails, vertical or horizontal. Responsive down to mobile Size of slides and thumbnails can be dynamically changed (all sliders on this site are responsive). HTML content in slides and thumbs Any content can be inserted inside each slide and thumbnail. Links are automatically blocked when dragging, inputs are handled too.View content slider ▸ Super customizable 50+ js options, 4 skins with photoshop files, 9 pre-built templates (and more coming). For developers: Cross-platform & cross-browser Slider works and has been tested on IE7+, iOS, Opera Mobile, Android 2.0+, Windows Phone 7+, BlackBerry OS and even black&white Kindle Keyboard browser :). View pricing or View demos
Desingineer in the Making : ngAnimate Your AngularJS Apps with CSS3 and jQuery Fallbacks ngAnimate Your AngularJS Apps with CSS3 and jQuery Fallbacks Update (2013.05.24): This article is now basing on AngularJS 1.1.5. AngularJS is a high-level, relatively new JavaScript MVW Framework that’s being powered by some fairly advanced computer science ideas typically unseen in the frontend development landscape - which leads to a logical conclusion that documentations and examples regarding certain parts of AngularJS can be pretty scarce at this moment. Take animations in AngularJS as a perfect example. As you may have already know, AngularJS ditched the familiar practice of manipulating DOM through jQuery in order to boost code testability, so up until now, animations in Angular were accomplished primarily through some fairly complicated ngClass manipulations, which could fall short when you want to create really complex effects or simply would like to have a more fine-grained control over the behaviors. To begin with, you will need to use the unstable branch of AngularJS.
jQuery hashchange event » Examples » hashchange event Your generous donation allows me to continue developing and updating my code! jQuery hashchange event enables very basic bookmarkable #hash history via a cross-browser window.onhashchange event. Click, and watch as the magic happens! Note that there is absolutely no JavaScript attached to the click event of these links. The code 01. 05. 06. var hash = location.hash; 09. document.title = 'The hash is ' + ( hash.replace( /^#/, '' ) || 'blank' ) + ' 12. 13. var that = $(this); 14. that[ that.attr( 'href' ) === hash ? 20. That's it! This plugin is, by design, very basic.