dynamicweb/datacenterlight/static/datacenterlight/js/main.js

134 lines
3.2 KiB
JavaScript
Raw Normal View History

(function($){
2017-05-18 05:13:00 +00:00
"use strict"; // Start of use strict
/* ---------------------------------------------
Scripts initialization
--------------------------------------------- */
$(window).load(function(){
});
$(document).ready(function(){
2017-02-17 14:13:32 +00:00
verifiedUrl();
2017-05-18 05:13:00 +00:00
_navScroll();
_initScroll();
_initNavUrl();
});
$(window).resize(function(){
});
2017-05-18 05:13:00 +00:00
2017-02-17 14:13:32 +00:00
2017-05-18 05:13:00 +00:00
/* ---------------------------------------------
Nav panel classic
--------------------------------------------- */
function _initScroll(){
$(window).scroll(function(){
_navScroll();
2017-02-17 14:13:32 +00:00
});
}
2017-05-18 05:13:00 +00:00
function _navScroll(){
if($(window).scrollTop() > 10 ){
console.log($(window).scrollTop());
$(".navbar").removeClass("navbar-transparent");
$(".navbar-default .btn-link").css("color", "#777");
}else{
$(".navbar").addClass("navbar-transparent");
$(".navbar-default .btn-link").css("color", "#fff");
}
}
function _initNavUrl(){
$('.url').click(function(){
var href = $(this).attr('data-url');
console.log(href);
$('html, body').animate({
scrollTop: $(href).offset().top
}, 1000);
2017-02-17 14:13:32 +00:00
});
}
2017-05-18 05:13:00 +00:00
function verifiedUrl(){
if(window.location.href.indexOf('#success') > -1){
form_success();
console.log('epa');
}
}
2017-02-17 14:13:32 +00:00
function form_success(){
$('#sucessModal').modal('show');
}
function _calculate(numbers, price){
2017-02-17 14:13:32 +00:00
$('#valueTotal').text(numbers*price*31);
}
2017-05-18 05:13:00 +00:00
})(jQuery);
// (function($){
// 'use strict'; // Start of use strict
// $(document).ready(function(){
// verifiedUrl();
// init_options_interested();
// init_nav();
// change_values();
// });
// function verifiedUrl(){
// if(window.location.href.indexOf('#success') > -1){
// form_success();
// }
// }
// function init_options_interested(){
// $('.row-vms').click(function(){
// $('.row-vms').removeClass('row-vms__active');
// $(this).addClass('row-vms__active');
// var number = $('.row-vms__active input').val();
// var price = $('.row-vms__active input').data('price');
// _calculate(number, price);
// });
// }
// function init_nav(){
// $('.nav-local').click(function(){
// $('html, body').animate({
// scrollTop: $('#'+$(this).data('href')).offset().top
// });
// });
// }
// function change_values(){
// $('.number-vms').keyup(function () {
// var number = $(this).val();
// var price = $(this).data('price');
// _calculate(number, price);
// });
// }
// function form_success(){
// $('#sucessModal').modal('show');
// }
// function _calculate(numbers, price){
// $('#valueTotal').text(numbers*price*31);
// }
2017-05-18 05:13:00 +00:00
// })(jQuery); // End of use strict