Star Cineplex – Bashundhara City
Now Showing
Regular · Hall 1–3
Premium · Hall 6
VIP · Hall 5
🎟
Ticket Categories
৳ —
৳ —
৳ —
ℹ
Important Info
- Showtimes may change without notice.
- Arrive before the scheduled show.
- Outside food and drinks may not be allowed.
- Verify the latest schedule before visiting.
Showtimes displayed here are for informational purposes.
Please check the official cinema website before visiting as
showtimes, halls and ticket prices can change.
(function(){
/* ======================================================== MOVIE DATA
এই অংশটাই আপনাকে প্রতি সপ্তাহে মূলত পরিবর্তন করতে হবে।
image = সরাসরি image URL url = Movie detail page title = Movie title format = 2D / 3D
show: type = regular / premium / vip hall = Hall name time = showtime
======================================================== */
const movieData = {
"2026-08-15": [
{ title:"Movie Title One", url:"https://otirikto.com/movie/movie-title-one/", image:"https://YOUR-IMAGE-DIRECT-LINK.com/movie-one.jpg", format:"2D · English",
shows:[
{ type:"regular", hall:"Hall 1–3", times:["11:00 AM","02:00 PM","05:00 PM"] },
{ type:"premium", hall:"Hall 6", times:["03:30 PM","06:30 PM","09:30 PM"] },
{ type:"vip", hall:"Hall 5", times:["07:00 PM"] }
] },
{ title:"Movie Title Two", url:"https://otirikto.com/movie/movie-title-two/", image:"https://YOUR-IMAGE-DIRECT-LINK.com/movie-two.jpg", format:"3D · English",
shows:[
{ type:"regular", hall:"Hall 1–3", times:["12:30 PM","03:30 PM","06:30 PM"] },
{ type:"premium", hall:"Hall 6", times:["01:30 PM","04:30 PM","07:30 PM"] }
] }
],
/* ====================================================== NEXT DAY ====================================================== */
"2026-08-16": [
{ title:"Movie Title One", url:"https://otirikto.com/movie/movie-title-one/", image:"https://YOUR-IMAGE-DIRECT-LINK.com/movie-one.jpg", format:"2D · English",
shows:[
{ type:"regular", hall:"Hall 1–3", times:["11:00 AM","02:00 PM","05:00 PM","08:00 PM"] },
{ type:"premium", hall:"Hall 6", times:["03:30 PM","06:30 PM","09:30 PM"] }
] }
],
/* ====================================================== DAY 3 ====================================================== */
"2026-08-17": [
{ title:"Movie Title One", url:"https://otirikto.com/movie/movie-title-one/", image:"https://YOUR-IMAGE-DIRECT-LINK.com/movie-one.jpg", format:"2D · English",
shows:[
{ type:"regular", hall:"Hall 1–3", times:["11:00 AM","02:00 PM","05:00 PM"] },
{ type:"premium", hall:"Hall 6", times:["03:30 PM","06:30 PM"] }
] }
],
/* ====================================================== DAY 4 ====================================================== */
"2026-08-18": [
{ title:"Movie Title One", url:"https://otirikto.com/movie/movie-title-one/", image:"https://YOUR-IMAGE-DIRECT-LINK.com/movie-one.jpg", format:"2D · English",
shows:[
{ type:"regular", hall:"Hall 1–3", times:["11:00 AM","02:00 PM","05:00 PM"] },
{ type:"vip", hall:"Hall 5", times:["08:00 PM"] }
] }
],
/* ====================================================== DAY 5 ====================================================== */
"2026-08-19": [
{ title:"Movie Title One", url:"https://otirikto.com/movie/movie-title-one/", image:"https://YOUR-IMAGE-DIRECT-LINK.com/movie-one.jpg", format:"2D · English",
shows:[
{ type:"regular", hall:"Hall 1–3", times:["11:00 AM","02:00 PM","05:00 PM","08:00 PM"] },
{ type:"premium", hall:"Hall 6", times:["06:00 PM","09:00 PM"] }
] }
],
/* ====================================================== DAY 6 ====================================================== */
"2026-08-20": [
{ title:"Movie Title One", url:"https://otirikto.com/movie/movie-title-one/", image:"https://YOUR-IMAGE-DIRECT-LINK.com/movie-one.jpg", format:"2D · English",
shows:[
{ type:"regular", hall:"Hall 1–3", times:["11:00 AM","02:00 PM","05:00 PM"] },
{ type:"premium", hall:"Hall 6", times:["03:30 PM","06:30 PM","09:30 PM"] }
] }
],
/* ====================================================== DAY 7 ====================================================== */
"2026-08-21": [
{ title:"Movie Title One", url:"https://otirikto.com/movie/movie-title-one/", image:"https://YOUR-IMAGE-DIRECT-LINK.com/movie-one.jpg", format:"2D · English",
shows:[
{ type:"regular", hall:"Hall 1–3", times:["11:00 AM","02:00 PM","05:00 PM"] },
{ type:"premium", hall:"Hall 6", times:["04:00 PM","07:00 PM"] },
{ type:"vip", hall:"Hall 5", times:["09:30 PM"] }
] }
]
};
/* ======================================================== DATE LABELS ======================================================== */
const dateLabels = {
"2026-08-15":"Saturday, 15 August 2026", "2026-08-16":"Sunday, 16 August 2026", "2026-08-17":"Monday, 17 August 2026", "2026-08-18":"Tuesday, 18 August 2026", "2026-08-19":"Wednesday, 19 August 2026", "2026-08-20":"Thursday, 20 August 2026", "2026-08-21":"Friday, 21 August 2026"
};
/* ======================================================== RENDER MOVIES ======================================================== */
function renderMovies(date){
const container=document.getElementById("otMovies");
const movies=movieData[date] || [];
container.innerHTML="";
if(!movies.length){
container.innerHTML= '
';
return; }
movies.forEach(function(movie){
let showHTML="";
movie.shows.forEach(function(show){
let timesHTML="";
show.times.forEach(function(time){
timesHTML += '' + time + '';
});
let typeName="";
if(show.type==="regular"){ typeName="Regular"; }
if(show.type==="premium"){ typeName="Premium"; }
if(show.type==="vip"){ typeName="VIP"; }
showHTML +=
'
'
'+
'
'+
'
';
});
const movieHTML=
'
'
''+
'
'+
'
'+
'
';
container.insertAdjacentHTML("beforeend",movieHTML);
});
}
/* ======================================================== DATE CLICK ======================================================== */
document.querySelectorAll(".ot-date").forEach(function(button){
button.addEventListener("click",function(){
document.querySelectorAll(".ot-date").forEach(function(item){ item.classList.remove("active"); });
this.classList.add("active");
const selectedDate=this.getAttribute("data-date");
document.getElementById("otCurrentDate").textContent = dateLabels[selectedDate] || selectedDate;
renderMovies(selectedDate);
});
});
/* ======================================================== INITIAL LOAD ======================================================== */
renderMovies("2026-08-15");
})();