Jump to content

Guruman2

Members
  • Posts

    15
  • Joined

  • Last visited

About Guruman2

  • Birthday 04/01/1984

Contact Methods

  • Yahoo
    Solution4all2015@yahoo.com

Guruman2's Achievements

Newbie

Newbie (1/7)

1

Reputation

  1. Masters. I have installed wordpress and phpbb3 on my system but i want to make it public on internet pls how can i do it.
  2. Masters. I have installed wordpress and phpbb3 on my system but i want to make it public on internet pls how can i do it.
  3. Pls masters, i hv install smf phorum on my system using local server for installation, but i need guide on how to make it accessable on internet for everybody. Thanks
  4. Pls masters, i hv install smf phorum on my system using local server for installation, but i need guide on how to make it accessable on internet for everybody. Thanks
  5. thank you very much for bearing with all my questions. i have gone through post 4 as said by you upon all my effort to get where i make the mistake i was unable to prove myself right. pls give me an example of it with different id. thank in advance.
  6. or if you like to communicate me through inbox i will like it thank
  7. ok my master thank you very much am expecting your help
  8. @justsomeguy thank you. But i have done it and it seem not working below is how i edited it as directed by you.pls help me out <!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"><head><title></title><script type="text/javascript" src="js/jquery-1.3.1.min.js"></script><script type="text/javascript">$(document).ready(function() {//Execute the slideShow, set 20 seconds for each imagesslideShow(4000, 'slideshow1');slideShow(4000, 'slideshow2');slideShow(4000, 'slideshow3');});function slideShow(speed, id) {...}slideShow(4000, 'slideshow1');slideShow(4000, 'slideshow2');slideShow(4000, 'slideshow3');//append a LI item to the UL list for displaying caption$('ul.slideshow' '#slideshow1').append('<li id="slideshow-caption" class="caption"><div class="slideshow-caption-container"><h3></h3><p></p></div></li>');$('ul.slideshow' '#slideshow2').append('<li id="slideshow-caption" class="caption"><div class="slideshow-caption-container"><h3></h3><p></p></div></li>');$('ul.slideshow' '#slideshow3').append('<li id="slideshow-caption" class="caption"><div class="slideshow-caption-container"><h3></h3><p></p></div></li>');//Set the opacity of all images to 0$( li').css({o'ul.slideshow' '#slideshow1'pacity: 0.0});//Get the first image and display it (set it to full opacity)$('ul.slideshow' '#slideshow1' li:first').css({opacity: 1.0}).addClass('show');$('ul.slideshow' '#slideshow2' li:first').css({opacity: 1.0}).addClass('show');$('ul.slideshow' '#slideshow3' li:first').css({opacity: 1.0}).addClass('show');//Get the caption of the first image from REL attribute and display it$('ul.slideshow' '#slideshow1' .caption h3').html($('ul.slideshow' '#slideshow1' li.show').find('img').attr('title'));$('ul.slideshow' '#slideshow1' .caption p').html($('ul.slideshow' '#slideshow1' li.show').find('img').attr('alt'));$('ul.slideshow' '#slideshow2' .caption h3').html($('ul.slideshow' '#slideshow2' li.show').find('img').attr('title'));$('ul.slideshow' '#slideshow2' .caption p').html($('ul.slideshow' '#slideshow2' li.show').find('img').attr('alt'));$('ul.slideshow' '#slideshow3' .caption h3').html($('ul.slideshow' '#slideshow3' li.show').find('img').attr('title'));$('ul.slideshow' '#slideshow3' .caption p').html($('ul.slideshow' '#slideshow1' li.show').find('img').attr('alt'));//Display the caption$('ul.slideshow' '#slideshow1' .caption').css({opacity: 0.7, bottom:0});$('ul.slideshow' '#slideshow2' .caption').css({opacity: 0.7, bottom:0});$('ul.slideshow' '#slideshow3' .caption').css({opacity: 0.7, bottom:0});//Call the gallery function to run the slideshowvar timer = setInterval('gallery("'ul.slideshow' '#slideshow1'")',speed);var timer = setInterval('gallery("'ul.slideshow' '#slideshow2'")',speed);var timer = setInterval('gallery("'ul.slideshow' '#slideshow3'")',speed);//pause the slideshow on mouse over$('ul.slideshow' '#slideshow1').hover(function () {clearInterval(timer);},function () {timer = setInterval('gallery("'ul.slideshow' '#slideshow1'")',speed);});function gallery() {$('ul.slideshow' '#slideshow2').hover(function () {clearInterval(timer);},function () {timer = setInterval('gallery("'ul.slideshow' '#slideshow2'")',speed);});function gallery() {$('ul.slideshow' '#slideshow3').hover(function () {clearInterval(timer);},function () {timer = setInterval('gallery("'ul.slideshow' '#slideshow3'")',speed);});function gallery() {//if no IMGs have the show class, grab the first imagevar current = ($('ul.slideshow' '#slideshow1' li.show')? $('ul.slideshow' '#slideshow1' li.show') : $('ul.slideshow' '#slideshow1' li:first'));var current = ($('ul.slideshow' '#slideshow2' li.show')? $('ul.slideshow' '#slideshow2' li.show') : $('ul.slideshow' '#slideshow2' li:first'));var current = ($('ul.slideshow' '#slideshow3' li.show')? $('ul.slideshow' '#slideshow3' li.show') : $('ul.slideshow' '#slideshow3' li:first'));//trying to avoid speed issueif(current.queue('fx').length == 0) {//Get next image, if it reached the end of the slideshow, start it back from the first imagevar next = ((current.next().length) ? ((current.next().attr('class') == 'caption')? $('ul.slideshow' '#slideshow1' li:first') :current.next()) : $('ul.slideshow' '#slideshow1' li:first'));var next = ((current.next().length) ? ((current.next().attr('class') == 'caption')? $('ul.slideshow' '#slideshow2' li:first') :current.next()) : $('ul.slideshow' '#slideshow2' li:first'));var next = ((current.next().length) ? ((current.next().attr('class') == 'caption')? $('ul.slideshow' '#slideshow3' li:first') :current.next()) : $('ul.slideshow' '#slideshow3' li:first'));//Get next image captionvar title = next.find('img').attr('title');var desc = next.find('img').attr('alt');//Set the fade in effect for the next image, show class has higher z-indexnext.css({opacity: 0.0}).addClass('show').animate({opacity: 1.0}, 1000);//Hide the caption first, and then set and display the caption$('ul.slideshow' '#slideshow1' .caption').slideToggle(300, function () {$('ul.slideshow' '#slideshow1' .caption h3').html(title);$('ul.slideshow' '#slideshow1' .caption p').html(desc);$('ul.slideshow' '#slideshow1' .caption').slideToggle(500);});$('ul.slideshow' '#slideshow2' .caption').slideToggle(300, function () {$('ul.slideshow' '#slideshow2' .caption h3').html(title);$('ul.slideshow' '#slideshow2' .caption p').html(desc);$('ul.slideshow' '#slideshow2' .caption').slideToggle(500);});$('ul.slideshow' '#slideshow3' .caption').slideToggle(300, function () {$('ul.slideshow' '#slideshow3' .caption h3').html(title);$('ul.slideshow' '#slideshow3' .caption p').html(desc);$('ul.slideshow' '#slideshow3' .caption').slideToggle(500);});//Hide the current imagecurrent.animate({opacity: 0.0}, 1000).removeClass('show');}}</script><style type="text/css">body {font-family:arial;font-size:12px;}ul #slideshow,ul #slideshow1,ul #slideshow2,ul #slideshow3 {list-style:none;width:450px;height:200px;overflow:hidden;position:relative;margin:0;padding:0;}ul#slideshow li {position:absolute;left:0;right:0;}ul#slideshow li.show {z-index:500;}ul img {border:none;}.caption {width:200px;height:70px;position:absolute;bottom:0;left:0;color:#fff;background:#;z-index:500;}.caption .slideshow-caption-container {padding:5px 10px;z-index:1000;}.caption h3 {margin:0;padding:0;font-size:14px;}.caption p {margin:5px 0 0 0;padding:0;}</style></head><body><ul id="slideshow"><li class="show"><a href="http://www.google.com"><img src="images/s1.jpg" width="450" height="200" title="Slide 1" alt=""/></a></li><li><a href="http://www.yahoo.com"><img src="images/s2.gif" width="450" height="200" title="Slide 2" alt=""/></a></li><li><a href="http://www.msn.com"><img src="images/s3.gif" width="450" height="200" title="Slide 3" alt=""/></a></li><li><a href="http://www.msn.com"><img src="images/w2.gif" width="450" height="200" title="Slide 4" alt=""/></a></li></ul></body></html>
  9. <!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"><head><title></title> <script type="text/javascript" src="js/jquery-1.3.1.min.js"></script><script type="text/javascript"> $(document).ready(function() { //Execute the slideShow, set 20 seconds for each imagesslideShow(4000); }); function slideShow(speed) { //append a LI item to the UL list for displaying caption$('ul.slideshow').append('<li id="slideshow-caption" class="caption"><div class="slideshow-caption-container"><h3></h3><p></p></div></li>'); //Set the opacity of all images to 0$('ul.slideshow li').css({opacity: 0.0}); //Get the first image and display it (set it to full opacity)$('ul.slideshow li:first').css({opacity: 1.0}).addClass('show'); //Get the caption of the first image from REL attribute and display it$('#slideshow-caption h3').html($('ul.slideshow li.show').find('img').attr('title'));$('#slideshow-caption p').html($('ul.slideshow li.show').find('img').attr('alt')); //Display the caption$('#slideshow-caption').css({opacity: 0.7, bottom:0}); //Call the gallery function to run the slideshowvar timer = setInterval('gallery()',speed); //pause the slideshow on mouse over$('ul.slideshow').hover( function () { clearInterval(timer); }, function () { timer = setInterval('gallery()',speed); }); } function gallery() { //if no IMGs have the show class, grab the first imagevar current = ($('ul.slideshow li.show')? $('ul.slideshow li.show') : $('#ul.slideshow li:first')); //trying to avoid speed issueif(current.queue('fx').length == 0) { //Get next image, if it reached the end of the slideshow, start it back from the first image var next = ((current.next().length) ? ((current.next().attr('id') == 'slideshow-caption')? $('ul.slideshow li:first') :current.next()) : $('ul.slideshow li:first')); //Get next image caption var title = next.find('img').attr('title'); var desc = next.find('img').attr('alt'); //Set the fade in effect for the next image, show class has higher z-index next.css({opacity: 0.0}).addClass('show').animate({opacity: 1.0}, 1000); //Hide the caption first, and then set and display the caption $('#slideshow-caption').slideToggle(300, function () { $('#slideshow-caption h3').html(title); $('#slideshow-caption p').html(desc); $('#slideshow-caption').slideToggle(500); }); //Hide the current image current.animate({opacity: 0.0}, 1000).removeClass('show'); } } </script><style type="text/css"> body {font-family:arial;font-size:12px;} ul.slideshow {list-style:none;width:400px;height:200px;overflow:hidden;position:relative;margin:0;padding:0; } ul.slideshow li {position:absolute;left:0;right:0;} ul.slideshow li.show {z-index:500;} ul img {border:none;} #slideshow-caption {width:200px;height:70px;position:absolute;bottom:0;left:0;color:#fff;background:#;z-index:500;} #slideshow-caption .slideshow-caption-container {padding:5px 10px; z-index:1000;} #slideshow-caption h3 {margin:0;padding:0;font-size:14px;} #slideshow-caption p {margin:5px 0 0 0;padding:0;}</style></head><body> <ul class="slideshow"><li class="show"><a href="http://www.google.com"><img src="images/s1.jpg" width="200" height="200" title="Slide 1" alt=""/></a></li><li><a href="http://www.yahoo.com"><img src="images/freedom2.jpg" width="200" height="200" title="Slide 2" alt=""/></a></li><li><a href="http://www.msn.com"><img src="images/MONEY1.JPG" width="200" height="200" title="Slide 3" alt=""/></a></li><li><a href="http://www.msn.com"><img src="images/MONEY2.PNG" width="200" height="200" title="Slide 4" alt=""/></a></li><li><a href="http://www.google.com"><img src="images/cow1.jpg" width="200" height="200" title="Slide 5" alt=""/></a></li><li><a href="http://www.yahoo.com"><img src="images/bigcat.jpg" width="200" height="200" title="Slide 6" alt=""/></a></li><li><a href="http://www.msn.com"><img src="images/bird7.jpg" width="200" height="200" title="Slide 7" alt=""/></a></li><li><a href="http://www.msn.com"><img src="images/kitty03.jpg" width="200" height="200" title="Slide 8".alt=""/></a></li></ul></body></html>thank you for respond that is the code am using. and i want miltiple of it in a page and i want to have the stylesheet and jquary in tere separate folder so that they would not be at the head part.
  10. Hi masters. I want to create multiple slide show in one page ,i have created on and is working well but i want to have like three difference slide show and i try to use the same code of the first with dfrent image but it did not work at all. pls i need ur guidiance. Thanks
  11. hi pls i want to know how to create storage file keep all the uploaded picture by the user please i need your help doing it. thank
  12. Thank but you still dont get me right what i mean is that i to creat site which will allow people to send sms to there friends. I.e from my site.
  13. Thank for your respond mr justsomeguy, how do i get sms gateway?
  14. I created a website for sending test message to mobile phone but i dont understand how to start doing it, the code that is required and others. thank for your concern.
  15. I am tired of this problem, i have being looking for help since i beleive my problem will solve here, i want to make my site to send message to cell phone but my problem is how to do it, how to start what is required and do i go for it. Thank.

×
×
  • Create New...