source: ether_2012/trunk/web/project/slideDataBases.jsp @ 374

Last change on this file since 374 was 358, checked in by vmipsl, 12 years ago

slides

File size: 2.1 KB
Line 
1<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
2
3<table class="slideTable">
4    <tr>
5        <td id="tdRamces">
6            <a href="http://ether.ipsl.jussieu.fr/etherTypo/index.php?id=1321&type=1&L=1">
7                <div class="slideTableTitle">RAMCES</div>
8                <img id="logoRamces" src="resources/images/logo_ramces.gif" width="80px" alt='<spring:message code="logo.ramces.alt"/>' title='<spring:message code="logo.ramces.alt"/>'/>
9            </a>
10        </td>
11
12        <td id="tdKinetics">
13            <a href="http://www.era-orleans.org/eradb">
14                <div class="slideTableTitle">Kinetics</div>
15                <img id="logoKinetics" src="resources/images/logo_cine-chim.jpg" width="80px" alt='<spring:message code="logo.kinetics.alt"/>' title='<spring:message code="logo.kinetics.alt"/>'/>
16            </a>
17
18        <td id="tdMegapoli">
19            <a href="http://ether.ipsl.jussieu.fr/megapoli">
20                <div class="slideTableTitle">MEGAPOLI</div>
21                <img id="logoMegapoli" src="resources/images/logo_Megapoli.png" width="80px" alt='<spring:message code="logo.megapoli.alt"/>' title='<spring:message code="logo.megapoli.alt"/>'/>
22            </a>
23        </td>
24    </tr>
25</table>
26&nbsp;
27
28<script type="text/javascript">
29    $( "#tdRamces" ).bind( "mouseover", function(){ $( "#logoRamces" ).attr( {src:"resources/images/logo_ramces_hover.gif"} ); } );
30    $( "#tdRamces" ).bind( "mouseout", function(){ $( "#logoRamces" ).attr( {src:"resources/images/logo_ramces.gif"} ); } );
31
32    $( "#tdKinetics" ).bind( "mouseover", function(){ $( "#logoKinetics" ).attr( {src:"resources/images/logo_cine-chim_hover.jpg"} ); } );
33    $( "#tdKinetics" ).bind( "mouseout", function(){ $( "#logoKinetics" ).attr( {src:"resources/images/logo_cine-chim.jpg"} ); } );
34
35    $( "#tdMegapoli" ).bind( "mouseover", function(){ $( "#logoMegapoli" ).attr( {src:"resources/images/logo_Megapoli_hover.png"} ); } );
36    $( "#tdMegapoli" ).bind( "mouseout", function(){ $( "#logoMegapoli" ).attr( {src:"resources/images/logo_Megapoli.png"} ); } );
37</script>
Note: See TracBrowser for help on using the repository browser.