index.blade.php 18 KB

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