CINXE.COM
3uTools
<!DOCTYPE html> <html lang="en"> <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"> <link rel="shortcut icon" href="https://www.3u.com/img/webicon.png?v=0.01"/> <title>3uTools</title> <link rel="stylesheet" href="https://www.3u.com/style/common.css?v=0.01"> <link rel="stylesheet" href="https://www.3u.com/style/header.css?v=0.01"> <link rel="stylesheet" href="https://www.3u.com/style/productsIos.css?v=0.01"> <link rel="stylesheet" href="https://www.3u.com/style/footer.css?v=0.01"> <link rel="stylesheet" href="https://www.3u.com/js/swiper/swiper-bundle.min.css?v=0.01"> </head> <body id="updateLog"> <!----------------------------------------------------------------------- 顶部 -----------------------------------------------------------------------> <!-- HEADER START --> <script src="https://www.3u.com/js/jquery-1.11.1.min.js"></script> <div class="headers_wrap"> <!-- 顶部导航 --> <div class="header"> <a href="https://www.3u.com/"> <img src="https://www.3u.com/imgs/header/3u.png" class="logo"> </a> <div class="menu"> <a class="item" id="nav_index" href="https://www.3u.com/" title="Home" onmouseenter="hideDonwloadWindow()">Home</a> <a class="item" id="nav_updateLog" href="javascript:;" onmouseenter="showDonwloadWindow()" title="Previous Versions"> Products </a> <a class="item" id="nav_firmwares" href="https://www.3u.com/firmwares" title="Firmwares" onmouseenter="hideDonwloadWindow()"> Firmwares </a> <a class="item" id="nav_tutorials" href="https://www.3u.com/tutorial" title="Tutorials" onmouseenter="hideDonwloadWindow()"> Tutorials </a> <a class="item" id="nav_news" href="https://www.3u.com/news/" title="News" onmouseenter="hideDonwloadWindow()"> News </a> <a class="item" href="http://forum.3u.com/" target="_blank" title="Forum" onmouseenter="hideDonwloadWindow()"> Forum </a> </div> <form action="https://www.3u.com/" method="post" id="searchForm" class="search"> <img src="https://www.3u.com//imgs/header/search@2x.png" class="icon"> <input type="text" name="s" id="s" class="head-search-ipt" placeholder="search" onBlur="searchContent();" onfocus="focusIpt()" autocomplete="off"/> <input type="hidden" name="type" value="100"/> <div class="hisList"> </div> </form> </div> <!-- 浮窗下载 --> <div class="donwload_window" onmouseleave="hideDonwloadWindow()"> <div class="donwload_box"> <div class="item"> <a class="type" href="https://www.3u.com/productsWin"> <img src="https://www.3u.com/imgs/index/Windows_120@2x.png" class="t_img"> <div class="name">3uTools for Windows/macOS</div> </a> <div class="btn_box"> <a class="btn type_1" href="https://url.3u.com/zmAJjyaa"> <img src="https://www.3u.com/imgs/index/windows@2x_ico.png" width="20"> Win(x86) </a> <a class="btn type_1" href="https://url2.3u.com/MNBBfyaa"> <img src="https://www.3u.com/imgs/index/windows@2x_ico.png" width="20"> Win(x64) </a> <a class="btn type_1" href="https://url2.3u.com/yiiuaqaa"> <img src="https://www.3u.com/imgs/index/macOS@2x_ico.png" width="20"> macOS </a> </div> </div> <div class="item"> <a class="type" href="https://www.3u.com/productsIos"> <img src="https://www.3u.com//imgs/index/iOS_120@2x.png" class="t_img"> <div class="name">3uTools for iOS</div> </a> <div class="btn_box"> <a class="btn type_1" href="https://www.3u.com/productsIos#installationBox">Download</a> <a class="btn" href="https://www.3u.com/productsIos">Details</a> </div> </div> <div class="item"> <a class="type" href="https://www.3u.com/remote"> <img src="https://www.3u.com/imgs/index/3uRemote_120@2x.png" class="t_img"> <div class="name">3uRemote for Windows/<br/>Android</div> </a> <div class="btn_box"> <a class="btn type_1" href="https://dl.3u.com/remote/3uRemote_v1.0.2.08_Setup_700001.exe"> <img src="https://www.3u.com/imgs/index/windows@2x_ico.png" width="20"> Win(x86) </a> <a class="btn type_1" href="https://dl.3u.com/remote/3uRemote_v1.0.2.08_Setup_x64_700001.exe"> <img src="https://www.3u.com/imgs/index/windows@2x_ico.png" width="20"> Win(x64) </a> <a class="btn type_1" href="https://play.google.com/store/apps/details?id=com.u3.remote"> <img src="https://www.3u.com/imgs/index/Android@2x.png" width="20"> Android </a> </div> </div> </div> </div> </div> <script type="text/javascript"> var searchInput = $('input[name="s"]'); $('#searchForm').submit(function () { setHisList($('#s').val()) return checkSearch(); }); var checkSearch = function () { var s = $.trim(searchInput.val()); if (s === '') { return false; } return true; }; function searchContent() { blurIpt(); if ($('#s').val() !== '') { setHisList($('#s').val()) } if (checkSearch()) $('#searchForm').submit(); } // $("#s").bind("keydown", function (e) {// 兼容FF和IE和Opera // var theEvent = e || window.event; // var code = theEvent.keyCode || theEvent.which || theEvent.charCode; // if (code === '13') { //处理按回车键后的逻辑 // searchContent(); // } // }); function searchContentByHis(event) { var word = $(event).text(); searchInput.val(word); setHisList(word) if (checkSearch()) $('#searchForm').submit(); } // 顶部按钮获取焦点显示历史记录 let searchDom = document.querySelector('.search') let hisDom = document.querySelector('.hisList') let focusIpt = () => { searchDom.style.border = '1px solid rgba(0,121,255,0.4)'; showHis(); } let blurIpt = () => { searchDom.style.border = '1px solid #CED7DE'; } let hideHis = () => { hisDom.style.display = 'none' } let showHis = () => { let hisList = (localStorage.getItem('hisList') && localStorage.getItem('hisList').split(',')) || [] if (hisList.length > 0) { hisDom.style.display = 'block' } getHisList(); } // 获取历史数据 let getHisList = () => { let hisListItem = `` let hisListDom = document.querySelector('.hisList') let hisList = (localStorage.getItem('hisList') && JSON.parse(localStorage.getItem('hisList'))) || [] if (hisList.length > 0) { hisList.forEach(v => { hisListItem += `<div onclick="searchContentByHis(this)" class="his_item hidetext">${v}</div>` }) } let hisItemList = ` <div class="his_title"> Recent searches <div class="delete" onclick="deleteHisList()"></div> </div> ${hisListItem} `; if (hisList.length > 0) { hisListDom.innerHTML = hisItemList } } getHisList() // 写入历史数据 let setHisList = (text) => { if (text !== '') { let hisList = (localStorage.getItem('hisList') && JSON.parse(localStorage.getItem('hisList'))) || [] hisList.unshift(text) //先去重 const newArr = [...new Set(hisList)]; //在分割 hisList = newArr.slice(0, 5) localStorage.setItem('hisList', JSON.stringify(hisList)) } getHisList() } // 删除历史记录 let deleteHisList = () => { localStorage.removeItem('hisList') getHisList() hisDom.style.display = 'none' } $(document.body).click(function () { //点击页面去掉搜索框中的历史内容 hideHis(); }); $('#s').click(function (e) { //点击搜索框不去掉搜索框中的历史内容 e.stopPropagation() }); </script> <!-- HEADER END --> <!----------------------------------------------------------------------- 大图 -----------------------------------------------------------------------> <div class="swiper"> <div class="swiper-wrapper"> <div class="swiper-slide"> <div class="main"> <div class="btn_box"> <div class="btn_box_item"> <a class="btn" href="https://www.3u.com/productsIos#installationBox">Download</a> <a class="btn_version" href="https://www.3u.com/update-log/1">Previous Versions ></a> </div> </div> </div> </div> </div> </div> <!----------------------------------------------------------------------- 信息 -----------------------------------------------------------------------> <div class="info_wrap"> <div class="info_box"> <div class="title">The Most Efficient iOS Files & Data Management Tool</div> <div class="info_detail"> <div class="item"> <img src="./imgs/productsIos/noaccount@2x.png" class="i_img"> <div class="name">No Apple ID Required</div> <div class="tip">No Apple ID required, a large number of apps are installed for free</div> </div> <div class="item"> <img src="./imgs/productsIos/nocharge@2x.png" class="i_img"> <div class="name">No Charge</div> <div class="tip">In 3utTools, all applications and games are downloaded for free</div> </div> <div class="item"> <img src="./imgs/productsIos/download@2x.png" class="i_img"> <div class="name">Download Manager</div> <div class="tip">You can stop or delete the apps being downloaded with one click</div> </div> </div> </div> </div> <!----------------------------------------------------------------------- App -----------------------------------------------------------------------> <div class="app_wrap"> <div class="app_box"> <div class="title">Numerous Apps and Games</div> <div class="tip">Various apps and games</div> <div class="tip">are waiting for you to freely download and enjoy.</div> </div> </div> <!----------------------------------------------------------------------- 界面 -----------------------------------------------------------------------> <div class="installation_wrap"> <div class="installation_box" id="installationBox"> <div class="title">Installation Tutorial</div> <div class="tip tip_1"> <img src="./imgs/productsIos/curcle.png" class="icon"> <span class="t">Step 1.</span> <span class="m">Download and install “3uTools for Windows/macOS”</span> </div> <div class="tip tip_2"> <img src="./imgs/productsIos/curcle.png" class="icon"> <span class="t">Step 2.</span> <span class="m">Open the 3uTools and connect the mobile device to the computer using a data cable</span> </div> <div class="tip tip_3"> <img src="./imgs/productsIos/curcle.png" class="icon"> <span class="t">Step 3.</span> <span class="m">After successful connection, click on "Install 3uTools”</span> </div> <div class="tip_y"> <img src="./imgs/productsIos/info-circle@2x.png" class="icon"> 3uTools for iOS is currently only available to some countries and regions </div> <div class="installation_box_btnx"> <a class="btn" href="https://url.3u.com/zmAJjyaa"> <img src="./imgs/index/windows@2x_ico.png" width="20"> Windows </a> <a class="btn" href="https://url2.3u.com/yiiuaqaa"> <img src="./imgs/index/macOS@2x_ico.png" width="20"> macOS </a> </div> </div> </div> <!----------------------------------------------------------------------- 底部 -----------------------------------------------------------------------> <!-- FOOTER START --> <script src="https://www.3u.com/js/common.js?v=0.01"></script> <div class="go_top" onclick="goTop()"></div> <!----------------------------------------------------------------------- 底部 -----------------------------------------------------------------------> <div class="footer_wrap"> <div class="footer_box"> <div class="top"> <div class="t_1"> Connect with us <a href="https://www.facebook.com/3utool/" target="_blank" title="Facebook"> <div class="f"></div> </a> <a href="https://twitter.com/3utools" target="_blank" title="Twitter"> <div class="t"></div> </a> </div> <div class="t_2"> <a class="t_2_item" href="https://www.3u.com/about-us" title="About Us"> About Us </a> <a class="t_2_item" href="https://www.3u.com/statement" title="Legal Statement"> Legal Statement </a> <a class="t_2_item" href="https://www.3u.com/disclaimer" title="Disclaimer"> Disclaimer </a> </div> <div class="t_3">© 2010 - 2024 3uTools. All Rights Reserved.</div> </div> <div class="tip_1">3uTools can manage files, download apps / wallpapers / ringtones, flash, jailbreak</div> <div class="tip_2">An All-in-one Tool for iOS Devices</div> </div> </div> <a href="javascript:;" class="totop" title="Back Up"></a> <script> $(function(){ if(!(!!window.ActiveXObject && !window.XMLHttpRequest)) { $(window).scroll(function(){ var top = $(window).scrollTop(); if(top > 300 && !$('.totop').hasClass('active')) $('.totop').addClass('active'); if(top <= 300 && $('.totop').hasClass('active')) $('.totop').removeClass('active'); if(top > $(document).height() - $(window).height() - 180 && !$('.totop').hasClass('active-b')) $('.totop').addClass('active-b'); if(top <= $(document).height() - $(window).height() - 180 && $('.totop').hasClass('active-b')) $('.totop').removeClass('active-b'); }); $('.totop').on('click', function(){ $('html, body').animate({scrollTop:0}, 200); }); } }); </script> <!-- <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'G-EZ7Y3HRRTD', 'auto'); ga('send', 'pageview'); </script> --> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-69992216-1"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-69992216-1'); </script> <!-- FOOTER END --> </body> <!-- 轮播 --> <script src="./js/swiper/swiper-bundle.min.js?v=0.01"></script> <script> var mySwiper = new Swiper('.swiper', {}) </script> </html>