Skip to content

Commit

Permalink
feat:quality-changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dev1abhi committed Mar 13, 2024
1 parent 4943c34 commit 7b39f9f
Show file tree
Hide file tree
Showing 5 changed files with 94 additions and 11 deletions.
29 changes: 23 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,11 @@
<div id="movies" class="scroll-container" ></div>
<button id="fwbtn" class="btf"><i class='bx bxs-chevron-left' style='color:#ffffff' ></i></button>
<button id="bwbtn" class="btw"><i class='bx bxs-chevron-right' style='color:#ffffff' ></i></button>

</div>


<div class="vertical-div"></div>

<div id="TopratedMovies">
<p style="color: #fff;">
Top Rated Movies:
Expand All @@ -142,6 +143,9 @@
<button id="bw1btn" class="btw"><i class='bx bxs-chevron-right' style='color:#ffffff'></i></button>
</div>

<div class="vertical-div"></div>


<div id="MoviesInd">
<p style="color: #fff;">
Movies (In Indian Theatres)
Expand All @@ -154,6 +158,10 @@
<button id="bw2btn" class="btw"><i class='bx bxs-chevron-right' style='color:#ffffff' ></i></button>
</div>


<div class="vertical-div"></div>


<div id="Bollywood">
<p style="color: #fff;">
Bollywood
Expand All @@ -167,7 +175,8 @@
</div>



<div class="vertical-div"></div>


<div id="Series">
<p style="color: #fff;">
Expand All @@ -182,6 +191,9 @@
</div>


<div class="vertical-div"></div>


<div id="SeriesTr">
<p style="color: #fff;">
Series: (Top-Rated)
Expand All @@ -195,6 +207,7 @@
</div>


<div class="vertical-div"></div>


<div id="BollySeries">
Expand All @@ -211,16 +224,20 @@



<div class="row copyright" style="position: relative; display: flex; justify-content: space-evenly; color: #fff;">
<p style="font-size: 15px; flex-basis: 1;font-weight: 400;">Copyright &copy; 2024 Abhilash Sarangi | All Rights Reserved | Made with 🧡</p>
</div>





<div class="row copyright" style="position: relative; display: flex; justify-content: center; padding-bottom: 2vw; color: #fff;">
<p style="font-size: 15px;text-align: center;margin-left: 10vw;margin-right: 10vw;font-weight: 100;">Bingflix does not host any files, it only links to 3rd party services. Legal issues should be taken up with the file hosts and providers. Bingflix is not responsible for any media files shown by the video providers.</p>
</div>






</div>

<script src="script.js" type="text/javascript"></script>

Expand Down
48 changes: 48 additions & 0 deletions movie_details.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@ button
padding: 1rem;
font-family: fantasy;
font-size: medium;
cursor: pointer;
background-color: #f4f3ff;
transition: background-color 0.3s ease;
}

button:hover {
color: white;
background-color: rgb(7, 14, 42);
}

h1
Expand Down Expand Up @@ -333,4 +341,44 @@ margin: 18px
.sidebar li .tooltip{
display: none;
}
}

.markdown-div {
font-family: 'Courier New', Courier, monospace;
line-height: 1.6;
padding: 1em;

max-width: 50%;
overflow-x: auto;
}

.markdown-div h1 {
font-size: 1.5em;
}

.markdown-div h2 {
font-size: 1.3em;
}

.markdown-div h3 {
font-size: 1.1em;
}

.markdown-div code {
background-color: #1f121200;
padding: 0.2em 0.4em;
border-radius: 0.2em;
}

.markdown-div pre {
background-color: #07112e;
padding: 1em;
border-radius: 0.5em;
overflow: auto;
}

.markdown-div ul,
.markdown-div ol {
margin-top: 0;
padding-left: 1.5em;
}
20 changes: 16 additions & 4 deletions movie_details.html
Original file line number Diff line number Diff line change
Expand Up @@ -114,15 +114,27 @@
<div id="buttons">
<button id="Trailerbtn">Watch Trailer</button>

<button onclick="switchEmbed1('https://embed.smashystream.com/playere.php?tmdb=')">Smashy</button>
<button onclick="switchEmbed1('https://embed.smashystream.com/playere.php?tmdb=')">Server 1</button>

<button onclick="switchEmbed('https://multiembed.mov/directstream.php?video_id=' + getParameterByName('id') + '&tmdb=1')">SuperEmbed</button>
<button onclick="switchEmbed('https://multiembed.mov/directstream.php?video_id=' + getParameterByName('id') + '&tmdb=1')">Server 2</button>

<button onclick="switchEmbed('https://vidsrc.xyz/embed/' + getParameterByName('id'))">VidSrc</button>
<button onclick="switchEmbed('https://vidsrc.xyz/embed/' + getParameterByName('id'))">Server 3</button>


<!-- Add more buttons for additional embeds -->

</div>


<div class="markdown-div" style="padding-top: 5%;">
<pre style="background-color: rgb(3, 16, 27);"><code>
- Use a Adblocker for better experience.
- Server 3 is the default server. If it fails to load or connect, use Server 1 or 2
- Repress the server if it doesn't start playing after waiting.
- Don't press the buttons continuosly
- If you get redirected to some other site , then close it & come back.
-Enjoy✨😇
</code></pre>
</div>

<div id="movieDetails" class="container">
<!-- Movie details will be populated here -->
Expand Down
2 changes: 1 addition & 1 deletion movie_details.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ document.addEventListener("DOMContentLoaded", function() {
fetchCastDetails();

// Set default embed URL
switchEmbed('https://embed.smashystream.com/playere.php?tmdb=${movieId}');
switchEmbed('https://vidsrc.xyz/embed/' + getParameterByName('id'));
})
.catch(error => console.error('Error fetching movie details:', error));

Expand Down
6 changes: 6 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ main {
overflow-y: hidden;
}

.vertical-div {
width: 100px; /* Adjust width as needed */
height: 10vh; /* Adjust height as needed */
background-color: transparent; /* Set background color if needed */
}


.item {

Expand Down

0 comments on commit 7b39f9f

Please sign in to comment.