Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Gerador de Links</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- margin: 20px;
- }
- textarea {
- width: 100%;
- height: 200px;
- margin-top: 10px;
- font-size: 14px;
- }
- button {
- padding: 10px 20px;
- font-size: 16px;
- cursor: pointer;
- }
- .links-container {
- margin-top: 20px;
- border: 1px solid #ccc;
- padding: 10px;
- background-color: #f9f9f9;
- }
- .link-code {
- margin-top: 20px;
- border: 1px solid #ccc;
- padding: 10px;
- background-color: #f9f9f9;
- white-space: pre-wrap;
- overflow-x: auto; /* Para permitir rolagem horizontal se necessário */
- }
- pre {
- white-space: pre-wrap;
- word-wrap: break-word;
- }
- </style>
- </head>
- <body>
- <h2>Gerador de Links com Target _blank</h2>
- <p>Insira os links abaixo, um por linha:</p>
- <textarea id="linksInput" placeholder="Insira os links aqui..."></textarea>
- <button onclick="gerarLinks()">Gerar Código HTML</button>
- <div class="links-container">
- <h3>Links gerados:</h3>
- <div id="linksOutput"></div>
- </div>
- <div class="link-code">
- <h3>Código HTML:</h3>
- <pre id="htmlCodeOutput"></pre>
- <button onclick="copiarCodigo()">Copiar</button>
- </div>
- <script>
- function gerarLinks() {
- // Captura o texto inserido no textarea
- let linksTexto = document.getElementById('linksInput').value.trim();
- // Divide o texto em linhas
- let linksArray = linksTexto.split('\n').filter(link => link.trim() !== '');
- // Gera os links clicáveis e o código HTML
- let linksHtml = '';
- let htmlCode = '';
- linksArray.forEach(link => {
- let trimmedLink = link.trim();
- linksHtml += `<p><a href="${trimmedLink}" target="_blank">${trimmedLink}</a></p>`;
- htmlCode += `<a href="${trimmedLink}" target="_blank">${trimmedLink}</a><br>`;
- });
- // Exibe os links gerados
- document.getElementById('linksOutput').innerHTML = linksHtml;
- // Exibe o código HTML gerado
- document.getElementById('htmlCodeOutput').textContent = htmlCode;
- }
- function copiarCodigo() {
- // Seleciona o elemento <pre> que contém o código HTML
- let codigoHtml = document.getElementById('htmlCodeOutput');
- // Cria um elemento de textarea auxiliar para copiar o texto
- let textarea = document.createElement('textarea');
- textarea.value = codigoHtml.textContent;
- textarea.setAttribute('readonly', '');
- textarea.style.position = 'absolute';
- textarea.style.left = '-9999px';
- document.body.appendChild(textarea);
- // Seleciona e copia o texto dentro do textarea auxiliar
- textarea.select();
- document.execCommand('copy');
- // Remove o textarea auxiliar
- document.body.removeChild(textarea);
- // Mostra feedback ao usuário
- alert('Código HTML copiado para a área de transferência!');
- }
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement