I am having a few issues here: one is reproducing this issue in jsfiddle as I can't seem to get the hover mouseover action working properly. The actual issue I'm having is the links in the 'field-more'link' content do not appear after jQuery tells the css to decrease the opacity on the image.
<div class="views-field views-field-field-member-image">
<div class="field-content">
<div class="field-more-link" >
<div class="field-name"><a href="/team-member/darrell-smith">Darrell Smith</a></div>
<div class="field-position">Instrument Maker</div>
<div class="field-general-position" style="display: none;">Associates</div>
<div class="field-project-name"><a href="google.com/tags/project">IceCube</a></div>
<div class="field-phone"></div>
<div class="field-email">dsmith@whatever.edu</div>
</div>
<div class="field-image" style="display:inline;">
<img typeof="foaf:Image" src="http://i.imgur.com/6wGdB52.jpg" alt="Darrell Smith" ></img>
</div>
Below is what I want the overlay to look like (but the links in .field-name and .field-project-name aren't clickable e.g. "Darrell Smith" and "IceCube" should be links)
https://i.stack.imgur.com/Vmx1F.png
Here is how far I got on the jsfiddle (couldn't get the jquery to work)
http://jsfiddle.net/9d43y2tn/4/
I hope this is enough info!