CINXE.COM
Ringtone Maker - extract audio
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" /> <title>Ringtone Maker - extract audio</title> </head> <style> .fixback { display: block; width: 100%; height: 100%; line-height: 0px; left: 0; top: 0; background-color: rgb(245,245,245); } .nametext{ text-align: center; margin-left: auto; margin-right: auto; font-size: 18px; font-weight: 600; margin-top: 40px; display: block; } .iconimg { display: block; width: 110px; height: 110px; margin-left: auto; margin-right: auto; margin-top: 50px; border-radius: 10px; } .downbtn { width: 280px; height: 50px; background-color: rgb(2,208,130); text-align: center; line-height: 50px; margin-left: auto; margin-right: auto; border: hidden; font-size: 16px; color: white; margin-top: 50px; border-radius: 6px; } .context { display: block; margin-left: auto; margin-right: auto; margin-top: 30px; width: 280px; line-height: 24px; font-size: 15px; font-weight: 600; color: rgba(0,0,0,0.8); } </style> <body style="text-align: center;background-color: rgb(245,245,245);"> <div class="fixback"> <img class="iconimg" src="img/apppic.jpeg" /> <label class="nametext">Ringtone Maker - extract audio</label> <label class="nametext">video to ringtone, mp3</label> <label class="context" style="text-align: left;"> Ringtone Maker, create custom ringtones and setup ringtone easily. You can set ringtone by garageband. Ringtone Maker can make ringtones by extracting audio from video, and also provides audio cutting and conversion functions. </label> <div> <div class="context" style="text-align:left;white-space:normal;word-wrap:break-word;"> <p>- Import videos from the photo library to extract audio and make ringtones.</p> <p>- Import videos from your computer and make ringtones.</p> <p>- Import audio, music, crop, make ringtones.</p> <p>- Automatically convert and share the made ringtones to GarageBand, set the phone ringtone easily.</p> </div> </div> <button class="downbtn" onclick="copyTXT()">Download</button> </div> <p><strong>Contact Us</strong></p> <p> contact me at meensa_tech@163.com</p> </body> <script> var copyDOM = document.querySelector('#copy-txt'); copyDOM.innerText = this.location.href; function copyTXT(){ window.location.href="https://itunes.apple.com/app/apple-store/id1525054507"; var range = document.createRange(); // 创建容器 range.selectNode(copyDOM); // 选中需要复制的节点 window.getSelection().addRange(range); // 执行选中元素 var successful = document.execCommand('copy');// 执行 copy 操作 try { var msg = successful ? 'successful' : 'unsuccessful'; console.log('Copy was ' + msg); } catch(err) { console.log('unable to copy'); } window.getSelection().removeAllRanges(); // 移除选中的元素 } </script> </html>