onnxruntime/js/custom.js
Maanav Dalal e3c2c804b6
add new section template (#15271)
…links.### Description
<!-- Describe your changes. -->
New section + many small changes


### Motivation and Context
<!-- - Why is this change required? What problem does it solve?
- If it fixes an open issue, please link to the issue here. -->

---------

Co-authored-by: brev <46505951+cassiebreviu@users.noreply.github.com>
Co-authored-by: MaanavD <maanavdalal@microsoft.com>
2023-04-21 07:40:28 -05:00

255 lines
No EOL
7.2 KiB
JavaScript

$(window).scroll(function () {
$("header").toggleClass("scrolled", $(this).scrollTop() > 50);
backTop();
});
$(document).ready(function () {
equalHeight();
backTop();
$("button.navbar-toggler").click(function (event) {
$("header").toggleClass("header-collapse");
});
$("header").toggleClass("scrolled", $(this).scrollTop() > 50);
// scroll body to 0px on click
$("#back-to-top").click(function () {
$("body,html").animate(
{
scrollTop: 0,
},
400
);
$("#ONNXLogo").focus();
return false;
});
$(document).click(function (event) {
var clickover = $(event.target);
var _opened = $(".navbar-collapse").hasClass("show");
if (_opened === true && !clickover.hasClass("navbar-toggler")) {
$(".navbar-toggler").click();
}
});
$("#listbox-5").focus(function () {
var top = $(".get-started-section").offset().top;
$(window).scrollTop(top);
});
$(document).keyup(function (e) {
if ($("#navbarNav").hasClass("show")) {
if (e.keyCode === 27) $("button.navbar-toggler").click(); // esc
}
});
$(".btn-getStarted").click(function () {
var tableTop = $("#getStartedTable").offset().top;
$("body,html").animate(
{
scrollTop: tableTop - 100,
},
600
);
});
$(document).on("click", ".resources-img", function(e) {
var data = $(this).attr('data-src');
var iframe = '<iframe width="100%" height="400" title="Resources" src="https://www.youtube.com/embed/'+data+'?autoplay=1" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>'
$('#myModal .modal-body').html(iframe);
$(".btn-modal").click();
});
$("#myModal").on('hide.bs.modal', function () {
$('#myModal .modal-body').children('iframe').attr('src', '');
});
$(document).on("focus", function (e) {
var docTop = $(this).offset().top;
$(window).scrollTop(docTop);
});
getStartedScroll();
carouselNormalization();
$('.nav-tabs').responsiveTabs();
//populate blogs
$.getJSON("js/blogs.json", function (json) {
var template = document.querySelector('#blog-item');
var blogList = document.querySelector('#blog-list');
json.blogs.forEach(function(blog) {
var clone = template.content.cloneNode(true);
clone.querySelector('[name="title"]').textContent = blog.title;
clone.querySelector('[name="date"]').textContent = blog.date;
clone.querySelector('[name="blurb"]').textContent = blog.blurb;
clone.querySelector('[name="link"]').href = blog.link;
blogList.appendChild(clone);
});
});
// //create local json and template fill for testing
// var template = document.querySelector('#blog-item');
// var blogList = document.querySelector('#blog-list');
// var blog = {
// title: "Test Title",
// date: "Test Date",
// blurb: "Test Blurb",
// link: "https://cloudblogs.microsoft.com/opensource/2023/01/25/improve-bert-inference-speed-by-combining-the-power-of-optimum-openvino-onnx-runtime-and-azure/"
// };
// var clone = template.content.cloneNode(true);
// clone.querySelector('[name="title"]').textContent = blog.title;
// clone.querySelector('[name="date"]').textContent = blog.date;
// clone.querySelector('[name="blurb"]').textContent = blog.blurb;
// clone.querySelector('[name="link"]').href = blog.link;
// blogList.appendChild(clone);
});
function getStartedScroll() {
var windowsHash = location.hash.split("#");
var tabelId = $("#getStartedTable");
if (tabelId.length) {
var tableTop = tabelId.offset().top;
}
if (windowsHash[1] === "getStartedTable") {
$("body,html").animate(
{
scrollTop: tableTop - 100,
},
600
);
}
}
$(window).resize(function () {
equalHeight();
});
function backTop() {
if ($(this).scrollTop() > 50) {
$("#back-to-top").fadeIn();
} else {
$("#back-to-top").fadeOut();
}
}
function equalHeight() {
if (window.innerWidth > 767) {
var maxHeight = 0;
$(".equalHeight h2").height("auto");
$(".equalHeight h2").each(function () {
if ($(this).height() > maxHeight) {
maxHeight = $(this).height();
}
});
$(".equalHeight h2").height(maxHeight);
var maxHeight = 0;
$(".equalHeight p").height("auto");
$(".equalHeight p").each(function () {
if ($(this).height() > maxHeight) {
maxHeight = $(this).height();
}
});
$(".equalHeight p").height(maxHeight);
var maxHeight = 0;
$(".equalHeight-1 h3").height("auto");
$(".equalHeight-1 h3").each(function () {
if ($(this).height() > maxHeight) {
maxHeight = $(this).height();
}
});
$(".equalHeight-1 h3").height(maxHeight);
var maxHeight = 0;
$(".equalHeight-1 .onnx-model-content").height("auto");
$(".equalHeight-1 .onnx-model-content").each(function () {
if ($(this).height() > maxHeight) {
maxHeight = $(this).height();
}
});
$(".equalHeight-1 .onnx-model-content").height(maxHeight);
var maxHeight = 0;
$(".equalHeight-2 h3").height("auto");
$(".equalHeight-2 h3").each(function () {
if ($(this).height() > maxHeight) {
maxHeight = $(this).height();
}
});
$(".equalHeight-2 h3").height(maxHeight);
var maxHeight = 0;
$(".equalHeight-2 p.first-child").height("auto");
$(".equalHeight-2 p.first-child").each(function () {
if ($(this).height() > maxHeight) {
maxHeight = $(this).height();
}
});
$(".equalHeight-2 p.first-child").height(maxHeight);
} else {
$(".equalHeight h2").height("auto");
$(".equalHeight p").height("auto");
$(".equalHeight-1 h3").height("auto");
$(".equalHeight-1 .onnx-model-content").height("auto");
$(".equalHeight-2 h3").height("auto");
$(".equalHeight-2 p.first-child").height("auto");
}
}
function carouselNormalization() {
var items = $("#ONNXCarousel .item"),
heights = [],
tallest;
if (items.length) {
function normalizeHeights() {
items.each(function () {
heights.push($(this).height());
});
tallest = Math.max.apply(null, heights);
items.each(function () {
$(this).css("min-height", tallest + "px");
});
}
normalizeHeights();
$(window).on("resize orientationchange", function () {
(tallest = 0), (heights.length = 0);
items.each(function () {
$(this).css("min-height", "0");
});
normalizeHeights();
});
}
}
(function ($){
$.fn.responsiveTabs = function() {
this.addClass('ddTabs'),
this.append($('<span class="dropdown-arrow"></span>')),
this.on("click", "li > a.active, span.dropdown-arrow", function (){
this.toggleClass('open');
}.bind(this)), this.on("click", "li > a:not(.active)", function() {
this.removeClass("open")
}.bind(this));
}
})(jQuery);
let copyText = (e) => {
// console.log(e.target.previousSibling.innerHTML.replace( /(<([^>]+)>)/ig, ''))
text = e.target.previousSibling.innerText;
navigator.clipboard.writeText(text);
$(e.target).popover({
content: "Copied!",
placement: "Left",
trigger: "manual"
});
$(e.target).popover("show");
// Hide the popover after 2 seconds
setTimeout(() => {
$(e.target).popover("hide");
}, 1500);
}