
<script>
<!DOCTYPE HTML>
$(document).ready( function() {

  $.fn.isInViewport = function () {
    let elementTop = jQuery(this).offset().top;
    let elementBottom = elementTop + jQuery(this).outerHeight();

    let viewportTop = jQuery(window).scrollTop();
    let viewportBottom = viewportTop + jQuery(window).height();

    let windowTop = viewportTop + (jQuery(window).height()/5);
    let windowBot = viewportTop + (jQuery(window).height()/1.5);

    return elementBottom > windowTop && elementTop < windowBot;
  };

  var inView = false;

  jQuery(window).on('scroll', function() {
    if ($(".image-column-text").isInViewport()) {
      if (!inView) {
        $(".image-column-text").css('opacity', '1');
        $(".image-column-image img").css('filter', 'brightness(25%)');
        setTimeout(function() {
          $(".image-column-text").css('opacity', '0');
          $(".image-column-image img").css('filter', 'brightness(100%)');
        }, 2000);
        inView = true;
      }
    } else {
      if (inView) {
        $(".image-column-text").css('opacity', '0');
        $(".image-column-image img").css('filter', 'brightness(100%)');
        inView = false;
      }
    }
  });

  $(".image-column-image").hover(
    function() {
      $(this).find(".image-column-text").css('opacity', '1');
      $(this).find("img").css('filter', 'brightness(25%)');
    },
    function() {
      $(this).find(".image-column-text").css('opacity', '0');
      $(this).find("img").css('filter', 'brightness(100%)');
    }
  )

})
</script>


<link rel="stylesheet" type="text/css" href="https://nanovea.com/wp-content/themes/wp-nanovea/productDisplay/products/css/single-product-pages.css">

<br><br><br>

<div class='mountains-container-1'>
  <img class='mountains-logo' src='https://nanovea.com/wp-content/themes/wp-nanovea/productDisplay/images/Mountains/Logo - Ultra 3D.png'>
</div>

<div class='mountains-container-2'>
    <div class='mountains-logo-text'>Experience the revolution in surface imagin, analysis and metrology.</div>
    <div class='mountains-logo-text'>Try all the features of the new generation industry-leading software for free</div>
    <div class='mountains-box-1'>
      <form action="https://nanovea.com/tr/daglar-ucretsiz-deneme/" id="contactForm" method="post">
        <div class='mountains-name'>FULL NAME
          <br>
          <input style="margin-left:135px;" type="text" name="contactName" id="contactName" value="" />
        </div>
        <div class='mountains-email'>E-MAIL
          <br>
          <input style="margin-left:170px;" type="text" name="email" id="email" value="" />
        </div>
        <br><br><br><br><br><br>
			<button class = "mountains-submit-button" type="submit">DOWNLOAD</button>
      <input type="hidden" name="submitted" id="submitted" value="True" />
    </form>
    <br><br><br>
      </div>

  <div class="mountains-black-fade">
    <div class="mountains-black-fade-text">
      <b><i>Before installing the software, please make sure that:</i></b>
      <br>
      1. You don't have any Mountains© USB security keys plugged into your computer.
      <br>
      2. You are connected to the Internet.
      <br>
      3. You have Administrator rights to install software.
      <br>
      4. You are using a 64-bit bersion of Windows.
      <br><br>
      <div style="text-align:center;">
      <b>Please note the Free Trial will not run on a Mac, Windows emulator,
      <br>
      Virtual Machines, or Remote Desktop Software.</b>
      <br>
    </div>
  </div>
</div>
</div>

<style>
/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: Arial;
  left: 35%;
  transform: translateX(-50%);
  top:12px;
  z-index:10;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: #1b96cf;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: DodgerBlue;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}
</style>

<script>
var x, i, j, selElmnt, a, b, c;
/*look for any elements with the class "custom-select":*/
x = document.getElementsByClassName("custom-select");
for (i = 0; i < x.length; i++) {
  selElmnt = x[i].getElementsByTagName("select")[0];
  /*for each element, create a new DIV that will act as the selected item:*/
  a = document.createElement("DIV");
  a.setAttribute("class", "select-selected");
  a.innerHTML = selElmnt.options[selElmnt.selectedIndex].innerHTML;
  x[i].appendChild(a);
  /*for each element, create a new DIV that will contain the option list:*/
  b = document.createElement("DIV");
  b.setAttribute("class", "select-items select-hide");
  for (j = 1; j < selElmnt.length; j++) {
    /*for each option in the original select element,
    create a new DIV that will act as an option item:*/
    c = document.createElement("DIV");
    c.innerHTML = selElmnt.options[j].innerHTML;
    c.addEventListener("click", function(e) {
        /*when an item is clicked, update the original select box,
        and the selected item:*/
        var y, i, k, s, h;
        s = this.parentNode.parentNode.getElementsByTagName("select")[0];
        h = this.parentNode.previousSibling;
        for (i = 0; i < s.length; i++) {
          if (s.options[i].innerHTML == this.innerHTML) {
            s.selectedIndex = i;
            h.innerHTML = this.innerHTML;
            y = this.parentNode.getElementsByClassName("same-as-selected");
            for (k = 0; k < y.length; k++) {
              y[k].removeAttribute("class");
            }
            this.setAttribute("class", "same-as-selected");
            break;
          }
        }
        h.click();
    });
    b.appendChild(c);
  }
  x[i].appendChild(b);
  a.addEventListener("click", function(e) {
      /*when the select box is clicked, close any other select boxes,
      and open/close the current select box:*/
      e.stopPropagation();
      closeAllSelect(this);
      this.nextSibling.classList.toggle("select-hide");
      this.classList.toggle("select-arrow-active");
    });
}
function closeAllSelect(elmnt) {
  /*a function that will close all select boxes in the document,
  except the current select box:*/
  var x, y, i, arrNo = [];
  x = document.getElementsByClassName("select-items");
  y = document.getElementsByClassName("select-selected");
  for (i = 0; i < y.length; i++) {
    if (elmnt == y[i]) {
      arrNo.push(i)
    } else {
      y[i].classList.remove("select-arrow-active");
    }
  }
  for (i = 0; i < x.length; i++) {
    if (arrNo.indexOf(i)) {
      x[i].classList.add("select-hide");
    }
  }
}
/*if the user clicks anywhere outside the select box,
then close all select boxes:*/
document.addEventListener("click", closeAllSelect);
</script>



</html>
{"id":8473,"date":"2020-05-21T18:07:06","date_gmt":"2020-05-21T18:07:06","guid":{"rendered":"https:\/\/nanovea.com\/?page_id=8473"},"modified":"2020-05-22T00:42:09","modified_gmt":"2020-05-22T00:42:09","slug":"daglar-ucretsiz-deneme","status":"publish","type":"page","link":"https:\/\/nanovea.com\/tr\/daglar-ucretsiz-deneme\/","title":{"rendered":"Mountains Free Trial"},"content":{"rendered":"","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":""},"class_list":["post-8473","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/nanovea.com\/tr\/wp-json\/wp\/v2\/pages\/8473","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nanovea.com\/tr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/nanovea.com\/tr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/nanovea.com\/tr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/nanovea.com\/tr\/wp-json\/wp\/v2\/comments?post=8473"}],"version-history":[{"count":4,"href":"https:\/\/nanovea.com\/tr\/wp-json\/wp\/v2\/pages\/8473\/revisions"}],"predecessor-version":[{"id":8478,"href":"https:\/\/nanovea.com\/tr\/wp-json\/wp\/v2\/pages\/8473\/revisions\/8478"}],"wp:attachment":[{"href":"https:\/\/nanovea.com\/tr\/wp-json\/wp\/v2\/media?parent=8473"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}