index.blade.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. @include('jimp.common.head')
  5. <link href="https://www.jiangyuanwang.com/cdn/animate-3.5.2.min.css" rel="stylesheet">
  6. <style>
  7. @keyframes spread {
  8. 0% {
  9. transform: scale(0);
  10. -webkit-transform: scale(0);
  11. -moz-transform: scale(0);
  12. transform: scale(0);
  13. }
  14. 100% {
  15. transform: scale(1);
  16. -webkit-transform: scale(1);
  17. -moz-transform: scale(1);
  18. transform: scale(1);
  19. }
  20. }
  21. @-webkit-keyframes spread {
  22. 0% {
  23. transform: scale(0);
  24. -webkit-transform: scale(0);
  25. -moz-transform: scale(0);
  26. transform: scale(0);
  27. }
  28. 100% {
  29. transform: scale(1);
  30. -webkit-transform: scale(1);
  31. -moz-transform: scale(1);
  32. transform: scale(1);
  33. }
  34. }
  35. @-moz-keyframes spread {
  36. 0% {
  37. transform: scale(0);
  38. -webkit-transform: scale(0);
  39. -moz-transform: scale(0);
  40. transform: scale(0);
  41. }
  42. 100% {
  43. transform: scale(1);
  44. -webkit-transform: scale(1);
  45. -moz-transform: scale(1);
  46. transform: scale(1);
  47. }
  48. }
  49. @-o-keyframes spread {
  50. 0% {
  51. transform: scale(0);
  52. -webkit-transform: scale(0);
  53. -moz-transform: scale(0);
  54. transform: scale(0);
  55. }
  56. 100% {
  57. transform: scale(1);
  58. -webkit-transform: scale(1);
  59. -moz-transform: scale(1);
  60. transform: scale(1);
  61. }
  62. }
  63. .banner-box {
  64. background: url(/static/jimp/kv_bg.png) no-repeat center center;
  65. }
  66. .banner-content {
  67. width: 1200px;
  68. margin: 0 auto;
  69. padding: 167px 0;
  70. position: relative;
  71. }
  72. .banner-text h1 {
  73. font-size: 40px;
  74. font-weight: bold;
  75. color: #FFFFFF;
  76. }
  77. .banner-text p {
  78. width: 440px;
  79. font-size: 16px;
  80. color: #FFFFFF;
  81. line-height: 32px;
  82. margin-top: 30px;
  83. margin-bottom: 40px;
  84. }
  85. .banner-imgtext a,
  86. .icontext-content a,
  87. .downloadtext-content a {
  88. position: relative;
  89. overflow: hidden;
  90. z-index: 2;
  91. }
  92. .banner-imgtext a {
  93. border-radius: 4px;
  94. width: 260px;
  95. height: 60px;
  96. justify-content: center;
  97. align-items: center;
  98. margin-bottom: 30px;
  99. background: #0BBDAA;
  100. animation: scaleOut 1.2s infinite ease-in-out;
  101. display: inline-flex;
  102. margin-right: 30px;
  103. }
  104. .banner-imgtext a p {
  105. font-size: 20px;
  106. margin: 0 10px;
  107. font-family: Arial;
  108. color: #FFFFFF;
  109. }
  110. .banner-imgtext a i,
  111. .icontext-content a i,
  112. .downloadtext-content a i {
  113. position: absolute;
  114. top: 50%;
  115. left: 50%;
  116. background: rgba(255, 255, 255, .2);
  117. width: 400px;
  118. height: 400px;
  119. border-radius: 50%;
  120. margin-left: -200px;
  121. margin-top: -200px;
  122. animation: spread 1.5s infinite both;
  123. -webkit-animation: spread 1.5s infinite both;
  124. -moz-animation: spread 1.5s infinite both;
  125. -o-animation: spread 1.5s infinite both;
  126. z-index: 1;
  127. }
  128. .banner-imgtext p {
  129. color: #FFFFFF;
  130. font-size: 16px;
  131. }
  132. .icontext-box {
  133. width: 1200px;
  134. margin: 0 auto;
  135. text-align: center;
  136. }
  137. .icontext-box h1 {
  138. font-size: 32px;
  139. font-weight: bold;
  140. color: #000000;
  141. margin-top: 80px;
  142. margin-bottom: 80px;
  143. position: relative;
  144. }
  145. .icontext-box h1::after {
  146. content: '';
  147. display: block;
  148. width: 40px;
  149. height: 4px;
  150. background: #FF9623;
  151. border-radius: 2px;
  152. position: absolute;
  153. bottom: -18px;
  154. left: 50%;
  155. transform: translate(-50%);
  156. }
  157. .icontext-box {
  158. text-align: center;
  159. }
  160. .icontext-content ul {
  161. margin-bottom: 80px;
  162. display: flex;
  163. flex-wrap: wrap;
  164. justify-content: space-between;
  165. }
  166. .flipInX {
  167. -webkit-backface-visibility: visible !important;
  168. backface-visibility: visible !important;
  169. -webkit-animation-name: flipInX;
  170. animation-name: flipInX;
  171. }
  172. .icontext-content ul li:nth-child(-n+4) {
  173. margin-bottom: 40px;
  174. }
  175. .icontext-content ul li {
  176. width: 220px;
  177. height: 270px;
  178. background: #FFFFFF;
  179. box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
  180. border-radius: 8px;
  181. text-align: initial;
  182. }
  183. .icontext-content ul li img {
  184. text-align: left;
  185. margin-left: 60px;
  186. margin-top: 20px;
  187. padding-bottom: 20px;
  188. }
  189. .icontext-content ul li p {
  190. color: #000000;
  191. font-size: 16px;
  192. text-align: center;
  193. }
  194. .icontext-content ul li p.i-descs {
  195. color: #999;
  196. font-size: 14px;
  197. padding: 0 20px;
  198. }
  199. .icontext-content a {
  200. display: block;
  201. width: 360px;
  202. height: 88px;
  203. line-height: 88px;
  204. margin: 0 auto;
  205. background: #FF9623;
  206. border-radius: 8px;
  207. color: #FFFFFF;
  208. font-size: 24px;
  209. text-align: center;
  210. animation: scaleOut 1.2s infinite ease-in-out;
  211. }
  212. .icontext-content a img {
  213. margin-right: 20px;
  214. }
  215. .midimgtext-box {
  216. width: 100%;
  217. height: 710px;
  218. margin-top: 100px;
  219. background: url(/static/compress/bg_1.png) no-repeat center center;
  220. }
  221. .midimgtext-box h1 {
  222. font-size: 32px;
  223. color: #FFFFFF;
  224. font-weight: bold;
  225. text-align: center;
  226. padding-top: 150px;
  227. position: relative;
  228. }
  229. .midimgtext-box h1::after {
  230. content: '';
  231. display: block;
  232. width: 40px;
  233. height: 4px;
  234. background: #FFFFFF;
  235. border-radius: 2px;
  236. position: absolute;
  237. bottom: -20px;
  238. left: 50%;
  239. transform: translate(-50%);
  240. }
  241. .midimgtext-box ul {
  242. width: 1200px;
  243. margin: 0 auto;
  244. margin-top: 80px;
  245. display: flex;
  246. justify-content: space-between;
  247. }
  248. .midimgtext-box ul li {
  249. width: 272px;
  250. text-align: center;
  251. }
  252. .midimgtext-box ul li img.img-item-min {
  253. margin-top: 20px;
  254. }
  255. .midimgtext-box ul li p.text-top {
  256. margin-top: 12px;
  257. font-size: 20px;
  258. }
  259. .midimgtext-box ul li p {
  260. margin-top: 8px;
  261. font-size: 16px;
  262. line-height: 33px;
  263. color: #FFFFFF;
  264. }
  265. .downloadtext-box {
  266. background: url(/static/compress/slogn_bg.png) no-repeat center center;
  267. height: 600px;
  268. margin-top: 30px;
  269. }
  270. .downloadtext-content {
  271. width: 1200px;
  272. margin: 0 auto;
  273. padding-top: 206px;
  274. }
  275. .downloadtext-content h1 {
  276. font-size: 40px;
  277. text-align: center;
  278. line-height: 40px;
  279. font-weight: bold;
  280. color: #FFFFFF;
  281. }
  282. .downloadtext-content a {
  283. display: block;
  284. width: 360px;
  285. height: 88px;
  286. line-height: 88px;
  287. margin: 0 auto;
  288. background: #FF9623;
  289. border-radius: 8px;
  290. color: #FFFFFF;
  291. font-size: 24px;
  292. text-align: center;
  293. margin-top: 60px;
  294. animation: scaleOut 1.2s infinite ease-in-out;
  295. }
  296. .downloadtext-content a img {
  297. margin-right: 20px;
  298. }
  299. .downTop {
  300. width: 100%;
  301. height: 60px;
  302. line-height: 60px;
  303. position: fixed;
  304. top: 0;
  305. left: 0;
  306. background: #fff;
  307. border-bottom: 1px solid #ccc;
  308. z-index: 999999;
  309. }
  310. .clearfix {
  311. zoom: 1;
  312. }
  313. .clearfix::before,
  314. .clearfix::after {
  315. content: "";
  316. display: table;
  317. }
  318. .fl {
  319. float: left;
  320. }
  321. .downTop-left,
  322. .downTop-right {
  323. line-height: 60px;
  324. }
  325. .fr {
  326. float: right;
  327. }
  328. .downTopDowmload {
  329. display: block;
  330. width: 200px;
  331. height: 40px;
  332. background: #E12924;
  333. border-radius: 8px;
  334. line-height: 40px;
  335. text-align: center;
  336. font-size: 14px;
  337. color: #fff;
  338. margin-top: 10px;
  339. margin-left: 30px;
  340. }
  341. .downTopDowmload span {
  342. display: inline-block;
  343. margin-right: 4px;
  344. margin-left: 4px;
  345. color: #fff;
  346. }
  347. .downTopDowmload {
  348. line-height: 40px;
  349. text-align: center;
  350. font-size: 14px;
  351. color: #fff;
  352. }
  353. .downTop-left,
  354. .downTop-right {
  355. line-height: 60px;
  356. }
  357. .downTop-right div {
  358. line-height: 60px;
  359. }
  360. .downTopDowmload img {
  361. width: 20px;
  362. height: 20px;
  363. }
  364. .w {
  365. width: 1200px;
  366. margin: 0 auto;
  367. }
  368. </style>
  369. <script>
  370. $(document).scroll(function() {
  371. var scroH = $(document).scrollTop();
  372. if (scroH >= 120) {
  373. $(".downTop").fadeIn();
  374. // document.getElementsByClassName("downTop").style.display = '';
  375. } else {
  376. $(".downTop").fadeOut();
  377. // document.getElementsByClassName("downTop").style.display = 'none';
  378. }
  379. })
  380. </script>
  381. </head>
  382. <body>
  383. <div class="downTop" style="display: none;">
  384. <div class="w clearfix">
  385. <div class="downTop-left fl">
  386. <a href="/compress">
  387. <img style="width: 40px;margin-right: 15px;" src="{{ $productInfo->logo }}"
  388. alt="{{ $productInfo->title }}">
  389. <span class="downTop-word">{{ $productInfo->title }}</span>
  390. </a>
  391. </div>
  392. <div class="downTop-right fr">
  393. <div class="fl">适配系统:win7/win8/win10/win11</div>
  394. <a class="downTopDowmload fl" href="{{ $windowsVersionInfo->download_url ?? '' }}">
  395. <img src="/static/compress/windows.png">
  396. <span>windows免费下载</span>
  397. <img src="/static/compress/yunxiazai.png">
  398. <i></i>
  399. </a>
  400. </div>
  401. </div>
  402. </div>
  403. <div class="header">
  404. @include('jimp.common.header')
  405. </div>
  406. <div class="banner-box">
  407. <div class="banner-content">
  408. <div class="banner-text">
  409. <h1>{{ $productInfo->title }}</h1>
  410. <div>
  411. {!! $productInfo->desc !!}
  412. </div>
  413. </div>
  414. <div class="banner-imgtext">
  415. <a href="{{ $windowsVersionInfo->download_url ?? '' }}">
  416. <img src="/static/compress/yunxiazai.png" alt="下载图片">
  417. <p>Windows 免费下载</p>
  418. <i></i>
  419. </a>
  420. <a style="background: #106A61" target="_blank"
  421. href="https://www.xingyousoft.com/buy?pmid={{ $productInfo->mid }}">
  422. <img src="/static/compress/cart.png" alt="windows图片">
  423. <p>立即购买</p>
  424. </a>
  425. <p>适用系统:win7/win8/win10/win11</p>
  426. </div>
  427. </div>
  428. </div>
  429. <div class="icontext-box">
  430. <!-- 标题 -->
  431. <h1>功能展示</h1>
  432. <!-- 小图标+文字介绍 -->
  433. <div class="icontext-content">
  434. <ul class="wow flipInX" style="visibility: visible; animation-name: flipInX;">
  435. <li>
  436. <img src="/static/images/jimp/logo/1.png" alt="图片压缩">
  437. <p>格式转换</p>
  438. <p class="i-descs">支持主流图片格式之间的互相转换,一键操作更方便</span>
  439. </li>
  440. <li>
  441. <img src="/static/images/jimp/logo/2.png" alt="">
  442. <p>图片压缩</p>
  443. <p class="i-descs">压缩模式可自由调节,轻轻松松一键搞定</span>
  444. </li>
  445. <li>
  446. <img src="/static/images/jimp/logo/3.png" alt="">
  447. <p>更改尺寸</p>
  448. <p class="i-descs">可修改图片尺寸、比例、缩放,自定义参数更强大</span>
  449. </li>
  450. <li>
  451. <img src="/static/images/jimp/logo/4.png" alt="">
  452. <p>美化图片</p>
  453. <p class="i-descs">调整图片对比度、亮度、透明度,添加边框更快捷</span>
  454. </li>
  455. <li>
  456. <img src="/static/images/jimp/logo/5.png" alt="">
  457. <p>添加水印</p>
  458. <p class="i-descs">支持文字水印、图片水印、水印位置可自定义调节</span>
  459. </li>
  460. <li>
  461. <img src="/static/images/jimp/logo/6.png" alt="">
  462. <p>图片圆角</p>
  463. <p class="i-descs">批量修改图片圆角,处理起来更高效快捷</span>
  464. </li>
  465. <li>
  466. <img src="/static/images/jimp/logo/7.png" alt="">
  467. <p>批量命名</p>
  468. <p class="i-descs">多张图片文件一件导入,批量重命名更方便</span>
  469. </li>
  470. <li>
  471. <img src="/static/images/jimp/logo/8.png" alt="">
  472. <p>批量旋转</p>
  473. <p class="i-descs">多张图片文件一件导入,自由选择图片角度、翻转</span>
  474. </li>
  475. <li>
  476. <img src="/static/images/jimp/logo/9.png" alt="图片拼接">
  477. <p>图片拼接</p>
  478. <p class="i-descs">多张图片拼接,长图模式、自由模式给工作带来更高的效率</span>
  479. </li>
  480. <li>
  481. <img src="/static/images/jimp/logo/10.png" alt="更多功能">
  482. <p>更多功能</p>
  483. <p class="i-descs">免费升级服务,更多功能等着您</span>
  484. </li>
  485. </ul>
  486. <a href="{{ $windowsVersionInfo->download_url ?? '' }}">
  487. <img src="/static/compress/download.png" alt="download">免费下载<i></i>
  488. </a>
  489. </div>
  490. </div>
  491. <div class="midimgtext-box">
  492. <h1>为什么选择我们</h1>
  493. <ul class="wow bounceInRight" style="visibility: visible; animation-name: bounceInRight;">
  494. <li>
  495. <img class="img-item-min" src="/static/compress/icon_1.png">
  496. <p class="text-top">图片压缩快</p>
  497. <p>采用了最先进的压缩技术,确保压缩时
  498. 耗费的系统资源少且压缩速度快。</p>
  499. </li>
  500. <li>
  501. <img src="/static/compress/icon_2.png">
  502. <p class="text-top">批量操作更方便</p>
  503. <p>如果您需要同时处理多个文件,只需要
  504. 将文件批量导入再完成简单几步即可实
  505. 现。</p>
  506. </li>
  507. <li>
  508. <img src="/static/compress/icon_3.png">
  509. <p class="text-top">质量高且清晰</p>
  510. <p>处理后能保证图片本身的质量清晰</p>
  511. </li>
  512. </ul>
  513. </div>
  514. <div class="container">
  515. <div class="index-title">
  516. <div class="name">服务领域</div>
  517. <div class="desc">覆盖多领域办公使用</div>
  518. </div>
  519. <div class="flex-between">
  520. <div class="serve-item">
  521. <img src="/static/images/38.png" class="serve-img" />
  522. <p class="serve-title">企业商用</p>
  523. <p class="serve-desc">自主研发,商用无忧,可以覆盖您的日常办公需求</p>
  524. </div>
  525. <div class="serve-item">
  526. <img src="/static/images/37.png" class="serve-img" />
  527. <p class="serve-title">政府服务</p>
  528. <p class="serve-desc">支持各级政府办公采购,协助提高政府服务效率</p>
  529. </div>
  530. <div class="serve-item">
  531. <img src="/static/images/36.png" class="serve-img" />
  532. <p class="serve-title">教育科研</p>
  533. <p class="serve-desc">辅助教育/教学科研,让教育工作更简单更高效</p>
  534. </div>
  535. <div class="serve-item">
  536. <img src="/static/images/35.png" class="serve-img" />
  537. <p class="serve-title">个人使用</p>
  538. <p class="serve-desc">产品简单易用易上手,致力于打造用户信得过的产品</p>
  539. </div>
  540. </div>
  541. </div>
  542. <div class="downloadtext-box">
  543. <div class="downloadtext-content">
  544. <h1>一款使用简单的图片批量处理工具</h1>
  545. <a href="{{ $windowsVersionInfo->download_url ?? '' }}">
  546. <img src="/static/compress/download.png" alt="download">免费下载<i></i>
  547. </a>
  548. </div>
  549. </div>
  550. @include('jimp.common.footer')
  551. </body>
  552. </html>