https://i.sstatic.net/geKaA.png
I'm in the process of building a website focused on movie recommendations, and I've developed a REST API using Python deployed on Heroku. To fetch the data, I'm utilizing Ajax.
$.ajax({
url: "MYURL?movie_name=" + movie,
method: "GET",
headers: {
"content-type": "application/x-www-form-urlencoded",
"Access-Control-Allow-Origin": "*"
},
crossDomain: true,
success: function(result) {
console.log("hey");
console.log(result);
res = JSON.parse(result);
}
});
The data retrieved includes movie images and names, stored in res["img"] and res["name"].
How can I create a carousel similar to this design, and is it referred to as a carousel in web design terms?
As someone new to front-end development and bootstraps, I'm looking for guidance on creating a carousel with a shadowed background and lower opacity, where the central photo stands out with a brighter appearance.