jquery-controlled sliding in different directions (swipe left, right, etc.)

Source: Internet
Author: User

Introduce Jquery.js and copy the following code to run.

<style type= "text/css" > .slide { position : relative ; height : 200 ; lightyellow; } .slide .inner { position : absolute ; left : 0 ; bottom : 0 ; height : 100 ; lightblue; width : 100% } </style>1, Slidetoggle () alternating slidedown (), slideup () HTML code < div id = "slidebottom" class = "slide" > < button > slide it </ button > < div class = "inner" > Slide from bottom </ div > </ div >JS Code $( ‘#slidebottom button‘ ).click( function () { $( this ).next().slideToggle(); });2. Left lateral alternating Animate lefthtml code < div id = "slidewidth" class = "slide" > < button > slide it </ button > < div class = "inner" > Slide from bottom </ div > </ div >JS Code $( "#slidewidth button" ).click( function (){ $( this ).next().animate({width: ‘toggle‘ }); });3. The left side alternately slide the Animate Margin (non-hidden) HTML code < div id = "slideleft" class = "slide" style = "width: 50%;float: right" > < button > slide it </ button > < div class = "inner" > Slide from bottom </ div > </ div >JS Code $( "#slideleft button" ).click( function (){ var $lefty = $( this ).next(); $lefty.animate({ left:parseInt($lefty.css( ‘left‘ ),10)==0 ? -$lefty.outerWidth() : 0 }); });4. Right lateral slide slide to righthtml code < div id = "slidemarginleft" class = "slide" style = "width: 60%;float: left" > < button > slide it </ button > < div class = "inner" > Slide from bottom </ div > </ div >JS Code $( "#slidemarginleft button" ).click( function (){ var $marginlefty = $( this ).next(); $marginlefty.animate({ marginLeft:parseInt($marginlefty.css( ‘marginLeft‘ ),10)==0 ? $marginlefty.outerWidth() : 0 }); });

jquery-controlled sliding in different directions (swipe left, right, etc.)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.