Click here to Skip to main content
15,893,487 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have built a html page, added css file.
In this page I have a div tag in which I want to show few picture,
It has to be like the picture gallery.
I have downloaded jquery plugin for it
(For example: slidesjs.com), but actually I dont know how to use the downloaded folder, how to add my own pictures and how to locate the slider in the <<div>> I meant.
I'll appriciate every help,
thanks in advance !!
Posted
Updated 13-Jun-11 8:25am
v3
Comments
Ed Nutting 13-Jun-11 14:49pm    
How can you expect us to help? Read the documentation and look at the plugin info/demo pages to work out how to use it. Unless you give us a link to the very page you downloaded the files from, we cannot help. Furthermore, we will only do what I said before - look through the documentation. We aren't paid here, at least try something yourself.
Member 7928594 13-Jun-11 15:02pm    
Well, I've wrote the link: slidesjs.com, you probably didn't see it.
And if it's not a great effort for you it will help me very much.
I suppose it's not so difficult, but I never used any JQuery before.
Thanks!
Keith Barrow 13-Jun-11 15:03pm    
You need to provide some code, or tell us what the problem is. Listing some stuff you have found on the Internet isn't going to get as response, even if we knew where your downloaded the stuff from.
Member 7928594 13-Jun-11 15:55pm    
OK, let's say I have this HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<style>
.gallery{
width:300px;
height:200px;
background:#660066;
float:right;
display:block;
padding:0px;
margin:50px 300px 0px 0px;
}
</style>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>MySite</title>

<script src="slides.jquery.js" type="text/javascript"></script>

</head>
<div class="gallery">
<script src="slides.jquery.js"></script>
</div>

</body>
</html>

Now I'm trying to use the JQuery I downloaded, in order to show pictures in the purple square. sO:
1. Which changes do I have to add in the code?
2. How can I choose the pictures for this script?
3. How can I locate it in the square?

This is all I neet to know.

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