VENTURE ANALYSIS
FOR VC'S, TRUSTS, PRIVATE OFFICES & FUNDS
ARE YOU
the steward or custodian of funding devoted to commercialising research, innovation or intangible assets?
DO YOU
need help to identify the novelty or uniqueness of science, technology and or patents?
DO YOU
need help to standardise criteria for derisking opportunities and deploying funds?
I WILL
uncover the novelty of an opportunity and convey its commercial feasibility in a single page summary that everyone can understand.
LET'S EXPLORE
function myFunction() {
var $animation_elements = jQuery('.et-waypoint'),
$window = jQuery(window);
function check_if_in_view() {
var window_height = $window.height(),
window_top_position = $window.scrollTop(),
window_bottom_position = (window_top_position + window_height);
$animation_elements.each(function() {
var $element = jQuery(this),
element_height = $element.outerHeight(),
element_top_position = $element.offset().top,
element_bottom_position = (element_top_position + element_height);
//check to see if this element is within viewport
if ((element_bottom_position >= window_top_position) && (element_top_position <= window_bottom_position)) {
$element.addClass('et-animated');
} else {
$element.removeClass('et-animated');
}
});
}
$window.on('scroll resize', check_if_in_view);
}
window.onload = myFunction;