Advertisement

04.21.2004 at 02:50PM PDT, ID: 20962684
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.4

Image Gallery

Asked by proy31 in JavaScript

Tags: ,

I have a DHTML  / Javascript  image gallary. The way it works is that it loads 3 thumbnails, and mouse over results in the big image being displayed.

However, i want it to start with a preset image rather than having to trigger it by mousing over the thumbnail.

my code is as follows.

<script type="text/javascript">

var dynimages=new Array()
dynimages[0]=["/images/photo1.jpg", ""]
dynimages[1]=["/images/photo2.jpg", ""]
dynimages[2]=["/images/photo3.jpg", ""]


var preloadimg="yes"
var optlinktarget=""
var imgborderwidth=0
var filterstring="progid:DXImageTransform.Microsoft.Pixelate(MaxSquare=15,Duration=1)"

if (preloadimg=="yes"){
for (x=0; x<dynimages.length; x++){
var myimage=new Image()
myimage.src=dynimages[x][0]
}
}

function returnimgcode(theimg){
var imghtml=""
if (theimg[1]!="")
imghtml='<a href="'+theimg[1]+'" target="'+optlinktarget+'">'
imghtml+='<img src="'+theimg[0]+'" border="'+imgborderwidth+'">'
if (theimg[1]!="")
imghtml+='</a>'
return imghtml
}

function modifyimage(loadarea, imgindex){
if (document.getElementById){
var imgobj=document.getElementById(loadarea)
if (imgobj.filters && window.createPopup){
imgobj.style.filter=filterstring
imgobj.filters[0].Apply()
}
imgobj.innerHTML=returnimgcode(dynimages[imgindex])
if (imgobj.filters && window.createPopup)
imgobj.filters[0].Play()
return false
}
}

</script>
<link href="/core/css/style_main_guests.css" rel="stylesheet" type="text/css">
<table width="102%"  border="0" cellpadding="4" cellspacing="0">
    <tr>
        <td><img src="/images/mem_prof.gif" width="203" height="22"> </td>
        <td colspan="2">&nbsp;</td>
    </tr>
    <tr>
      <td width="203" valign="top"><div align="center">
        <table width="100%" border="0" cellpadding="4" cellspacing="0" bgcolor="#CCCCCC" class="thumbnailborder">
          <tr>
            <td colspan="3"><div align="center">
                <div id="dynloadarea" style="width:192px;height:212px"></div>
            </div></td>
          </tr>
          <tr>
            <td width="34%"><div align="right"><a href="#" onMouseOver="modifyimage('dynloadarea', 2)"><img border="0" src="/images/photo1.jpg" width="58" height="58"></a></div></td>
            <td width="33%"><div align="center"><a href="#" onMouseOver="modifyimage('dynloadarea', 1)"><img border="0" src="/images/photo2.jpg" width="58" height="58"></a></div></td>
            <td width="33%"><div align="left"><a href="#" onMouseOver="modifyimage('dynloadarea', 0)"><img border="0" src="/images/photo3.jpg" width="58" height="58"></a></div></td>
          </tr>
        </table>
      </div></td>

Thanks in advanceStart Free Trial
[+][-]04.21.2004 at 05:51PM PDT, ID: 10884461

View this solution now by starting your 14-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: JavaScript
Tags: javascript, dynloadarea
Sign Up Now!
Solution Provided By: apprenti
Participating Experts: 3
Solution Grade: A
 
 
[+][-]04.22.2004 at 06:05AM PDT, ID: 10888375

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 14-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]05.29.2004 at 06:05PM PDT, ID: 11189252

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 14-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]06.27.2004 at 11:45PM PDT, ID: 11413389

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 14-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]07.02.2004 at 09:04PM PDT, ID: 11461676

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 14-day free trial to view this Administrative Comment or ask the Experts your question.

 
 
Loading Advertisement...
20081112-EE-VQP-43