Click here to Skip to main content
15,896,063 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I develop website in this i display left slider but i have no idea which Jquery use in that?so,please explain how to display
Left extruder in vb.net
reply me as soon as possible.
Posted
Updated 9-Mar-14 6:43am
v2
Comments
Sampath Lokuge 9-Mar-14 12:44pm    
Your question is not clear.So can you provide more info ?
Member 10054218 9-Mar-14 12:58pm    
In <head> tag i display

<head runat="server">
<title>Untitled Page</title>
<link rel="Stylesheet" href="StyleSheet_slider.css" />
<script src="jquery-1.7.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {

$(".slider a").click(function () {
position:"Left",
$("#mainpanel").slideToggle("slow");

});


});
</script>
</head>

I <body> tag I display

<body>
<form id="form1" runat="server">
<div id="mainpanel">
<span>JQuery</span>
<span class="flapLabel" style="line-height: 20px; font-weight: normal; white-space: nowrap; position: relative; -ms-writing-mode: tb-rl;"><span style="line-height: 20px; -ms-writing-mode: tb-rl; whiteSpace: nowrap;">content in place</span></span>
</div>
<div class="slider">
Click Here
</div>

</form>
</body>

and I develop one stylesheet my code is:
body
{
margin:10;
padding:10;
width:350px;

}
#main panel
{
background-color:Purple;
display:none;
}
.slider {
margin: 10px;
padding: 10px;
border-left: solid 7px #0B4213;
width:400px;
height:300px;
background: url(extruder_flap.png) no-repeat;
z-index:105px;

/* -moz-border-radius: 0 10px 10px 0;
-webkit-border-top-right-radius: 10px;
-webkit-border-bottom-right-radius: 10px;
-moz-box-shadow: #666 2px 0px 3px;
-webkit-box-shadow: #666 2px 0px 3px;*/
}
.slider a {
text-align: left;
width: 184px;
height: 311px;
padding: 10px 10px 10px 10px;
margin: 0;
display: block;
font-family:Tahoma;
font-size:1.2em;
color: #000;
text-decoration: none;
position:absolute;

}
I also use Jquery1.7.js but it work on top side not left side
so , plz help me
Sergey Alexandrovich Kryukov 9-Mar-14 20:14pm    
Excuse me, could you explain, what is "extruder", in your context?
—SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900