This commit is contained in:
2020-12-20 20:28:40 -03:00
parent a6b9f70747
commit 52e1e9995c
14 changed files with 1165 additions and 128 deletions

View File

@ -1,5 +1,19 @@
function resize() {
let p = 400 / 1030
$('.container').each(function(i, el) {
let height = $(this).height
let width = $(this).width
$(this).width = height * p;
})
}
$(document).ready(function() {
$('.sticky').sticky({
context: '#column'
})
$('.shopping.cart').innerText = 0
window.onresize = resize;
})