Web Design Forum: Horizontal Div Slider - Web Design Forum

Jump to content

WDF
WDF Premium Memberships Reseller Hosting
Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Horizontal Div Slider

#1 User is offline   sammyk 

  • Forum Newcomer
  • Pip
  • Group: Members
  • Posts: 13
  • Joined: 04-January 12
  • Reputation: 0

Posted 25 January 2012 - 12:52 AM

I'm trying to make a div slider go left to right. In as much detail this is what I would like: -The div to be hidden on first page load -Have the div slide left to right AND BACK by the click of an image NOT a button -When the image (of a right arrow) is clicked, let the arrow slide out with the div (and IF possible when div is fully extended have image of a left arrow enabling a slide back and vice-versa)

Here's what I got so far. (Don't need to use)

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript" src="TestSite/js/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function() {
	 $('#slideleft button').click(function() {
    var $lefty = $(this).next();
    $lefty.animate({
      left: parseInt($lefty.css('left'),10) == 0 ?
      -$lefty.outerWidth() :
      0
    });
  });
});
</script>

<style>

    .slide {
	position: relative;
	overflow: hidden;
	height: 120px;
	width: 350px;
	margin: 1em 0;
	background-color: #FFF;
	border: 1px solid #999;
}
.slide .inner {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 338px;
	height: 36px;
	padding: 6px;
	background-color: #F00;
	color: #333;
}
.slide button {
  margin: .7em 0 0 .7em;
}
.js #slidebottom .inner { 
  display: none;
}
</style>

</head>

    <div id="slideleft" class="slide">
      <button><img src="TestSite/js/fancy_nav_right.png" /></button>
      <div class="inner">Slide from bottom</div>
    </div>



<body>
</body>
</html>

0

#2 User is online   sash_oo7 

  • Forum Newcomer
  • PipPipPipPip
  • Group: Members
  • Posts: 838
  • Joined: 15-August 10
  • Reputation: 45
  • Gender:Male
  • Location:Mars
  • Experience:Nothing
  • Area of Expertise:Nothing

Posted 25 January 2012 - 03:38 AM

see here
0

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

3 User(s) are reading this topic
0 members, 3 guests, 0 anonymous users