<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Filme Documentare</title>
		<link>https://nasta-searche.do.am/dir/</link>
		<description>Filme Documentare</description>
		<lastBuildDate>Tue, 13 Jun 2023 17:03:57 GMT</lastBuildDate>
		<generator>uCoz Web-Service</generator>
		<atom:link href="https://nasta-searche.do.am/dir/rss" rel="self" type="application/rss+xml" />
		
		<item>
			<title>Remi3</title>
			<description>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
 &lt;title&gt;Aplicație Scor Joc&lt;/title&gt;
 &lt;style type=&quot;text/css&quot;&gt;
 table {
 border-collapse: collapse;
 width: 400px;
 text-align: center;
 }

 th,
 td {
 border: 1px solid black;
 padding: 8px;
 }

 th {
 background-color: #f2f2f2;
 }

 #scoreTable th:first-child,
 #scoreTable td:first-child {
 text-align: left;
 }

 .overlay {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-color: rgba(0, 0, 0, 0.8);
 display: none;
 z-index: 9999;
 }

 .winnerText {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 color: white;
 font-size: 48px;
 font-weight: bold;
 text-align: center;
 animation: winnerAnimation 15s linear;
 }

 @keyframes winnerAnimation {
 0% {
 opacity: 0;
 transform: translate(-50%, -50%) scale(0.5);
 }

 50% {
 opacity: 1;
 transform: translate(-50%, -50%) scale(1.2);
 }

 100% {
 opacity: 0;
 transform: translate(-50%, -50%) scale(0.5);
 }
 }
 &lt;/style&gt;
 &lt;script type=&quot;text/javascript&quot;&gt;
 var players = [
 { name: &quot;&quot;, points: 0, scores: [], turnIndex: 1 },
 { name: &quot;&quot;, points: 0, scores: [], turnIndex: 0 },
 { name: &quot;&quot;, points: 0, scores: [], turnIndex: 0 }
 ];

 var roundNumber = 0;

 function addScores() {
 var player1Name = document.getElementById(&quot;player1NameInput&quot;).value;
 var player1Score = parseInt(document.getElementById(&quot;player1ScoreInput&quot;).value);
 var player1Atu = document.getElementById(&quot;player1AtuInput&quot;).checked;

 var player2Name = document.getElementById(&quot;player2NameInput&quot;).value;
 var player2Score = parseInt(document.getElementById(&quot;player2ScoreInput&quot;).value);
 var player2Atu = document.getElementById(&quot;player2AtuInput&quot;).checked;

 var player3Name = document.getElementById(&quot;player3NameInput&quot;).value;
 var player3Score = parseInt(document.getElementById(&quot;player3ScoreInput&quot;).value);
 var player3Atu = document.getElementById(&quot;player3AtuInput&quot;).checked;

 players[0].name = player1Name;
 players[0].scores.push(player1Score);
 players[0].points += player1Score;

 players[1].name = player2Name;
 players[1].scores.push(player2Score);
 players[1].points += player2Score;

 players[2].name = player3Name;
 players[2].scores.push(player3Score);
 players[2].points += player3Score;

 roundNumber++;
 document.getElementById(&apos;roundInfo&apos;).textContent = &apos;Runda: &apos; + roundNumber;

 var nextTurnIndex = (players.findIndex(player =&gt; player.turnIndex === 1) + 1) % players.length;
 players.forEach(function (player, index) {
 player.turnIndex = (index === nextTurnIndex) ? 1 : 0;
 document.getElementById(`player${index + 1}Name`).textContent = player.name;
 document.getElementById(`player${index + 1}Points`).textContent = player.points;
 document.getElementById(`player${index + 1}Scores`).textContent = player.scores.join(&quot;, &quot;);
 document.getElementById(`player${index + 1}Turn`).textContent = (index === nextTurnIndex) ? player.name : &quot;&quot;;
 });
 }

 function showWinner() {
 var sortedPlayers = players.slice().sort(function (a, b) {
 return b.points - a.points;
 });

 var winner = sortedPlayers[0];
 var runnerUp = sortedPlayers[1];
 var thirdPlace = sortedPlayers[2];

 if (winner) {
 var winnerName = winner.name;
 var runnerUpName = (runnerUp) ? runnerUp.name : &quot;&quot;;
 var thirdPlaceName = (thirdPlace) ? thirdPlace.name : &quot;&quot;;

 document.getElementById(&quot;winnerTextContent&quot;).textContent = &quot;Felicitări locul 1, &quot; + winnerName + &quot;!&quot;;
 document.getElementById(&quot;winnerOverlay&quot;).style.display = &quot;block&quot;;

 if (runnerUp) {
 setTimeout(function () {
 document.getElementById(&quot;winnerTextContent&quot;).textContent = &quot;Felicitări locul 2, &quot; + runnerUpName + &quot;!&quot;;
 }, 14000);
 }

 if (thirdPlace) {
 setTimeout(function () {
 document.getElementById(&quot;winnerTextContent&quot;).textContent = &quot;Felicitări locul 3, &quot; + thirdPlaceName + &quot;!&quot;;
 }, 17000);
 }

 setTimeout(function () {
 document.getElementById(&quot;winnerOverlay&quot;).style.display = &quot;none&quot;;
 }, 19000);

 var audio = new Audio(&quot;http://nasta-searche.do.am/Queen-We_Are_The_Champions-Lyrics-mp3cut.net-.mp3&quot;);
 audio.play();

 startWinnerAnimation(); // Apelăm funcția de animație
 } else {
 alert(&quot;Nu există un câștigător în acest moment.&quot;);
 }
 }

 function startWinnerAnimation() {
 var winnerText = document.getElementById(&quot;winnerTextContent&quot;);
 var colors = [&quot;white&quot;, &quot;yellow&quot;, &quot;orange&quot;, &quot;red&quot;, &quot;pink&quot;, &quot;purple&quot;, &quot;blue&quot;, &quot;lightblue&quot;];
 var index = 0;

 document.getElementById(&quot;winnerOverlay&quot;).style.display = &quot;block&quot;;

 setInterval(function() {
 winnerText.style.color = colors[index];
 index = (index + 1) % colors.length;
 }, 125);
 }

 window.onload = function () {
 document.getElementById(&quot;showWinnerButton&quot;).addEventListener(&quot;click&quot;, showWinner); // Schimbăm numele funcției la evenimentul de click
 };

 window.onbeforeunload = function () {
 return &quot;Felicitări pentru jocul tău!&quot;;
 };
 &lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
 &lt;table id=&quot;scoreTable&quot;&gt;
 &lt;tbody&gt;
 &lt;tr&gt;
 &lt;th&gt;Nume&lt;/th&gt;
 &lt;th&gt;Scor total&lt;/th&gt;
 &lt;th&gt;Scoruri adăugate&lt;/th&gt;
 &lt;th&gt;Cine face cărțile&lt;/th&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td id=&quot;player1Name&quot;&gt;&lt;/td&gt;
 &lt;td id=&quot;player1Points&quot;&gt;&lt;/td&gt;
 &lt;td id=&quot;player1Scores&quot;&gt;&lt;/td&gt;
 &lt;td id=&quot;player1Turn&quot;&gt;&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td id=&quot;player2Name&quot;&gt;&lt;/td&gt;
 &lt;td id=&quot;player2Points&quot;&gt;&lt;/td&gt;
 &lt;td id=&quot;player2Scores&quot;&gt;&lt;/td&gt;
 &lt;td id=&quot;player2Turn&quot;&gt;&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td id=&quot;player3Name&quot;&gt;&lt;/td&gt;
 &lt;td id=&quot;player3Points&quot;&gt;&lt;/td&gt;
 &lt;td id=&quot;player3Scores&quot;&gt;&lt;/td&gt;
 &lt;td id=&quot;player3Turn&quot;&gt;&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td colspan=&quot;4&quot; id=&quot;roundInfo&quot;&gt;&lt;/td&gt;
 &lt;/tr&gt;
 &lt;/tbody&gt;
 &lt;/table&gt;
 &lt;p&gt;&lt;br /&gt;
 &lt;input id=&quot;player1NameInput&quot; placeholder=&quot;Nume jucător 1&quot; type=&quot;text&quot; /&gt;&lt;/p&gt;
 &lt;p&gt;
 &lt;input id=&quot;player1ScoreInput&quot; placeholder=&quot;Scor jucător 1&quot; type=&quot;number&quot; /&gt;&lt;/p&gt;
 &lt;p&gt;
 &lt;strong&gt;ATU&lt;/strong&gt; &lt;input id=&quot;player1AtuInput&quot; type=&quot;checkbox&quot; /&gt;&lt;/p&gt;
 &lt;p&gt;&lt;br /&gt;
 &lt;input id=&quot;player2NameInput&quot; placeholder=&quot;Nume jucător 2&quot; type=&quot;text&quot; /&gt;&lt;/p&gt;
 &lt;p&gt;
 &lt;input id=&quot;player2ScoreInput&quot; placeholder=&quot;Scor jucător 2&quot; type=&quot;number&quot; /&gt;&lt;/p&gt;
 &lt;p&gt;
 &lt;strong&gt;ATU&lt;/strong&gt; &lt;input id=&quot;player2AtuInput&quot; type=&quot;checkbox&quot; /&gt;&lt;/p&gt;
 &lt;p&gt;&lt;br /&gt;
 &lt;input id=&quot;player3NameInput&quot; placeholder=&quot;Nume jucător 3&quot; type=&quot;text&quot; /&gt;&lt;/p&gt;
 &lt;p&gt;
 &lt;input id=&quot;player3ScoreInput&quot; placeholder=&quot;Scor jucător 3&quot; type=&quot;number&quot; /&gt;&lt;/p&gt;
 &lt;p&gt;
 &lt;strong&gt;ATU&lt;/strong&gt; &lt;input id=&quot;player3AtuInput&quot; type=&quot;checkbox&quot; /&gt;&lt;/p&gt;
 &lt;p&gt;&lt;br /&gt;
 &lt;button onclick=&quot;addScores()&quot;&gt;Adaugă scoruri&lt;/button&gt;
 &lt;button id=&quot;showWinnerButton&quot;&gt;Afișează câștigătorul&lt;/button&gt;
 &lt;/p&gt;
 &lt;div id=&quot;winnerOverlay&quot; class=&quot;overlay&quot;&gt;
 &lt;div class=&quot;winnerText&quot;&gt;
 &lt;span id=&quot;winnerTextContent&quot;&gt;&lt;/span&gt;
 &lt;/div&gt;
 &lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</description>
			
			<link>https://nasta-searche.do.am/dir/filme_documentare/filme_traduse_in_limba_romana/remi3/2-1-0-13</link>
			<category>Filme Traduse in limba Romana</category>
			<dc:creator>Boby</dc:creator>
			<guid>https://nasta-searche.do.am/dir/filme_documentare/filme_traduse_in_limba_romana/remi3/2-1-0-13</guid>
			<pubDate>Tue, 13 Jun 2023 17:03:57 GMT</pubDate>
		</item>
	</channel>
</rss>