function ajax() {
$.ajax('
http://127.0.0.1:8000/ads/banner',{ dataType: "json",
headers: {'X-CSRFToken': '{{ csrf_token }}'},
success: function (data) {
console.log(data);
data.forEach(el => {
const img = document.createElement('img');
img.src = el.image;
img.height = el.height;
img.width = el.width;
if (img.height === 600 && img.width === 1000){
let div = document.getElementById('banner-big').appendChild(img);
div.style.marginLeft = '15vw';
img.style.paddingBottom = '15vh';
}
if (img.height === 72 && img.width === 392){
let div = document.getElementById('banner-left').appendChild(img);
img.style.top = '0';
img.style.marginLeft = '0';
img.style.padding = '3vw'
}
});
}
});
}
ajax();