|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + <head> |
| 4 | + <meta charset="utf-8" /> |
| 5 | + |
| 6 | + <meta http-equiv="X-UA-Compatible" content="IE=edge" /> |
| 7 | + <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| 8 | + <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> |
| 9 | + <!-- Bootstrap --> |
| 10 | + <link href="css/bootstrap.min.css" rel="stylesheet" /> |
| 11 | + <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> |
| 12 | + <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> |
| 13 | + <!--[if lt IE 9]> |
| 14 | + <script src="js/html5shiv.min.js"></script> |
| 15 | + <script src="js/respond.min.js"></script> |
| 16 | + <![endif]--> |
| 17 | + |
| 18 | + <link href="css/styles.css" rel="stylesheet" /> |
| 19 | + <title>Hongguang Zhu - Scientific Software Developer</title> |
| 20 | + </head> |
| 21 | + <body> |
| 22 | + <div id="content-head"></div> |
| 23 | + <div class="container-fluid fond fond5 parallax"> |
| 24 | + <div class="container"> |
| 25 | + <div class="col-md-10 col-md-push-1 fleche-retour"> |
| 26 | + <a href="the-team.html" |
| 27 | + ><img class="fleche-gauche" src="img/fleche-gauche.svg" /><span |
| 28 | + >The team</span |
| 29 | + ></a |
| 30 | + > |
| 31 | + </div> |
| 32 | + </div> |
| 33 | + </div> |
| 34 | + <div class="container"> |
| 35 | + <div class="col-md-8 col-md-push-2"> |
| 36 | + <div class="fiche"> |
| 37 | + <div class="text-center"> |
| 38 | + <img |
| 39 | + src="img/avatar/Hongguang_Zhu.jpg" |
| 40 | + srcset="img/avatar/Hongguang_Zhu@2x.jpg 2x" |
| 41 | + class="img-circle avatar" |
| 42 | + /> |
| 43 | + <h3> |
| 44 | + <strong>Hongguang Zhu</strong><br /> |
| 45 | + Scientific Software Developer |
| 46 | + </h3> |
| 47 | + </div> |
| 48 | + <div class="description"> |
| 49 | + <p align="justify"> |
| 50 | + Hongguang is a Scientific Software Engineer at Quantstack. |
| 51 | + He obtained a Master degree in image processing from University of Rennes 1 in 2010 |
| 52 | + then he went to Canada(QC) to work on research project about autonomous vehicle. |
| 53 | + During that time, he became interested in scientific computing then worked |
| 54 | + on a few research projects in France related to open-source scientific computing such as |
| 55 | + the parallelization of <a href="https://github.com/linbox-team/linbox">linbox</a> (a linear algebra toolbox |
| 56 | + for cryptography) and the improvement of scatnet(a machine learning package for seismology). |
| 57 | + </p> |
| 58 | + <p align="justify"> |
| 59 | + Hongguang discovered the critical role of open-source work in science and is keen to contribute back to a |
| 60 | + community that gives so much. |
| 61 | + </p> |
| 62 | + </div> |
| 63 | + </div> |
| 64 | + </div> |
| 65 | + </div> |
| 66 | + |
| 67 | + <div class="spacer big"></div> |
| 68 | + |
| 69 | + <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> |
| 70 | + <script src="js/jquery.min.js"></script> |
| 71 | + <!-- Include all compiled plugins (below), or include individual files as needed --> |
| 72 | + <script src="js/bootstrap.min.js"></script> |
| 73 | + |
| 74 | + <div id="content-foot"></div> |
| 75 | + <script src="js/include-menus.js"></script> |
| 76 | + <script> |
| 77 | + function isInViewport(node) { |
| 78 | + var rect = node.getBoundingClientRect(); |
| 79 | + return ( |
| 80 | + (rect.height > 0 || rect.width > 0) && |
| 81 | + rect.bottom >= 0 && |
| 82 | + rect.right >= 0 && |
| 83 | + rect.top <= |
| 84 | + (window.innerHeight || document.documentElement.clientHeight) && |
| 85 | + rect.left <= |
| 86 | + (window.innerWidth || document.documentElement.clientWidth) |
| 87 | + ); |
| 88 | + } |
| 89 | + |
| 90 | + $(window).scroll(function () { |
| 91 | + var scrolled = $(window).scrollTop(); |
| 92 | + $(".parallax").each(function (index, element) { |
| 93 | + var initY = $(this).offset().top + 200; |
| 94 | + var height = $(this).height(); |
| 95 | + var endY = initY + $(this).height(); |
| 96 | + // Check if the element is in the viewport. |
| 97 | + var visible = isInViewport(this); |
| 98 | + if (visible) { |
| 99 | + var diff = scrolled - initY; |
| 100 | + var ratio = Math.round((diff / height) * 100); |
| 101 | + var move = parseInt(-(ratio * 1.5)); |
| 102 | + // if (move>90)move = 90; |
| 103 | + $(this).css("background-position", "center " + move + "px"); |
| 104 | + } |
| 105 | + }); |
| 106 | + |
| 107 | + $(".icons").each(function (index, element) { |
| 108 | + var visible = isInViewport(this); |
| 109 | + if (visible) { |
| 110 | + $(".icon-content").each(function (index, element) { |
| 111 | + $(this) |
| 112 | + .delay(index * 500) |
| 113 | + .fadeIn(); |
| 114 | + }); |
| 115 | + } |
| 116 | + }); |
| 117 | + }); |
| 118 | + </script> |
| 119 | + </body> |
| 120 | +</html> |
0 commit comments