Ingen beskrivning
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

laptopdetails.html 46KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge" />
  7. <link rel="stylesheet" href="./all.css" />
  8. <title>Anwi</title>
  9. <style>
  10. .img-magnifier-glass {
  11. position: absolute;
  12. /* border: 3px solid #8a3033; */
  13. cursor: none;
  14. /* border-radius: 50%; */
  15. width: 370px;
  16. height: 310px;
  17. z-index: 10;
  18. }
  19. .product_details {
  20. right: 100px;
  21. top: 40%;
  22. }
  23. .products-display-box .rg-card-box {
  24. display: -webkit-box;
  25. display: -webkit-flex;
  26. display: -ms-flexbox;
  27. display: flex;
  28. align-content: flex-start;
  29. align-items: flex-start;
  30. justify-content: space-between;
  31. flex-wrap: wrap;
  32. width: calc(54% - 12px);
  33. }
  34. @media screen and (min-width: 1920px) {
  35. .products-display-box .rg-card-box .rg-card-item {
  36. min-height: 582px;
  37. }
  38. }
  39. .products-display-box .rg-card-box .item-product {
  40. padding: 56px 0;
  41. }
  42. .products-display-box .rg-card-box .rg-card-item {
  43. position: relative;
  44. width: calc(50% - 12px);
  45. height: calc(50% - 12px);
  46. min-height: 368px;
  47. margin-bottom: 24px;
  48. background-color: #fff;
  49. border-radius: 24px;
  50. }
  51. .products-display-box .card-box {
  52. position: relative;
  53. height: 100%;
  54. }
  55. .products-display-box .rg-card-box .item-product .card-info {
  56. padding: 0 32px;
  57. }
  58. .products-display-box .lf-card-box {
  59. margin-right: 12px;
  60. width: calc(46% - 12px);
  61. background-color: #fff;
  62. border-radius: 24px;
  63. display: -webkit-box;
  64. display: -webkit-flex;
  65. display: -ms-flexbox;
  66. display: flex;
  67. flex-wrap: wrap;
  68. justify-content: center;
  69. align-items: center;
  70. align-content: center;
  71. }
  72. @media screen and (min-width: 1920px) {
  73. .products-display-box,
  74. .products-display-box.init-editor,
  75. .products-display-box .lf-card-box {
  76. min-height: 1188px;
  77. }
  78. }
  79. .bg-zeno-light {
  80. background-color: #f5f5f5;
  81. }
  82. .card-title {
  83. margin-bottom: 16px;
  84. font-size: 18px;
  85. line-height: 1.375;
  86. font-weight: bold;
  87. }
  88. .products-display-box .card-box .card-title {
  89. word-break: break-word;
  90. height: 33px;
  91. }
  92. .products-display-box .card-selling-points li {
  93. margin-bottom: 8px;
  94. line-height: 1.2;
  95. color: #757575;
  96. word-break: break-word;
  97. }
  98. .products-display-box .rg-card-box .item-product .card-selling-points {
  99. margin-bottom: 24px;
  100. font-size: 13px;
  101. line-height: 20px;
  102. list-style: none;
  103. height: 62.7812px;
  104. }
  105. .productDetailsShadow {
  106. position: relative;
  107. }
  108. /* .left_anwi_img{
  109. position: sticky;
  110. top: 40px;
  111. } */
  112. #main_show_img {
  113. cursor: pointer;
  114. }
  115. </style>
  116. </head>
  117. <body>
  118. <!-- navbar -->
  119. <auth-loader></auth-loader>
  120. <div id="navbar-head" class=""></div>
  121. <!-- end-navbar -->
  122. <!-- main-body -->
  123. <main
  124. class="main-body home-main-container loading-main"
  125. id="home-main-container"
  126. >
  127. <section class="services barbgnav d-none h-100 pt-3 bg-gradient-anwi">
  128. <div class="container pt-5">
  129. <div class="text-center text-white"></div>
  130. </div>
  131. </section>
  132. <section class="py-5 d-none">
  133. <div class="container-fluid position-relative">
  134. <div class="product_details d-md-none d-block">
  135. <div>
  136. <input type="hidden" name="" id="skudetailitem" />
  137. <h4 class="productname fw-600 ps-3 pt-5"></h4>
  138. </div>
  139. </div>
  140. <div class="text-center">
  141. <img
  142. src="./dist/assets/imgs/new_img/main_banner.webp"
  143. class="w-100"
  144. />
  145. </div>
  146. <div class="position-absolute product_details d-md-block d-none">
  147. <div>
  148. <input type="hidden" name="" id="skudetailitem" />
  149. <h4 class="productname"></h4>
  150. </div>
  151. </div>
  152. </div>
  153. </section>
  154. <section class="py-5 bg-zeno-light d-none">
  155. <div class="container py-md-5">
  156. <div class="row">
  157. <div class="col-md-5 pb-3 pb-md-0 text-center">
  158. <div class="p-5 notes bg-white rounded-3 h-100">
  159. <a href="#" class="ga-pdp-link">
  160. <div class="card-title pt-4">
  161. FYRO Flagship - 17.3 - I9 13900HX - RTX 4080
  162. </div>
  163. </a>
  164. <a href="#" class="card-img-box mb-show ga-pdp-link notes">
  165. <img
  166. class="pc-mb show success-img left-block pt-5"
  167. alt="card-img"
  168. src="./dist/assets/imgs/new_img/lappy1.png"
  169. height="450px"
  170. width="450px"
  171. />
  172. </a>
  173. </div>
  174. </div>
  175. <div class="col-md-7 ps-md-1">
  176. <div class="d-flex gap-3 pb-3 product_item">
  177. <div class="bg-white rounded-3 text-center">
  178. <div class="p-5 notes">
  179. <a
  180. href="#"
  181. class="card-img-box mb-show ga-pdp-link"
  182. data-nameforga="products_display_HUAWEI MateBook X Pro"
  183. data-position="1"
  184. >
  185. <img
  186. class="w-75 pc-mb show success-img"
  187. alt="card-img"
  188. src="./dist/assets/imgs/new_img/lappy2.png"
  189. />
  190. </a>
  191. <a
  192. href="#"
  193. class="ga-pdp-link"
  194. data-nameforga="products_display_HUAWEI MateBook X Pro"
  195. data-position="1"
  196. >
  197. <div class="card-title">
  198. FYRO Flagship - 17.3 - I9 13900HX - RTX 4090
  199. </div>
  200. </a>
  201. <!-- <div>
  202. 13th Gen Intel® Core™ Processor
  203. </div> -->
  204. </div>
  205. </div>
  206. <div class="rounded-3 text-center bg-white">
  207. <div class="p-5 notes">
  208. <a
  209. href="#"
  210. class="card-img-box mb-show ga-pdp-link"
  211. data-nameforga="products_display_HUAWEI MateBook X Pro"
  212. data-position="1"
  213. >
  214. <img
  215. class="w-75 pc-mb show success-img"
  216. alt="card-img"
  217. src="./dist/assets/imgs/new_img/lappy3.png"
  218. />
  219. </a>
  220. <a
  221. href="#"
  222. class="ga-pdp-link"
  223. data-nameforga="products_display_HUAWEI MateBook X Pro"
  224. data-position="1"
  225. >
  226. <div class="card-title">
  227. FYRO Flagship - 17.3 - I9 13900HX - RTX 4060
  228. </div>
  229. </a>
  230. <!-- <div>
  231. 13th Gen Intel® Core™ Processor
  232. </div> -->
  233. </div>
  234. </div>
  235. </div>
  236. <div class="d-flex gap-3 product_item">
  237. <div class="rounded-3 text-center bg-white">
  238. <div class="p-5 notes">
  239. <a
  240. href="#"
  241. class="card-img-box mb-show ga-pdp-link"
  242. data-nameforga="products_display_HUAWEI MateBook X Pro"
  243. data-position="1"
  244. >
  245. <img
  246. class="w-75 pc-mb show success-img"
  247. alt="card-img"
  248. src="./dist/assets/imgs/new_img/lappy4.png"
  249. />
  250. </a>
  251. <a
  252. href="#"
  253. class="ga-pdp-link"
  254. data-nameforga="products_display_HUAWEI MateBook X Pro"
  255. data-position="1"
  256. >
  257. <div class="card-title">
  258. FYRO Flagship - 17.3 - I9 13900HX - RTX 3050
  259. </div>
  260. </a>
  261. <!-- <div>
  262. 13th Gen Intel® Core™ Processor
  263. </div> -->
  264. </div>
  265. </div>
  266. <div class="rounded-3 text-center bg-white">
  267. <div class="p-5 notes">
  268. <a
  269. href="#"
  270. class="card-img-box mb-show ga-pdp-link"
  271. data-nameforga="products_display_HUAWEI MateBook X Pro"
  272. data-position="1"
  273. >
  274. <img
  275. class="w-75 pc-mb show success-img"
  276. alt="card-img"
  277. src="./dist/assets/imgs/new_img/lappy5.png"
  278. />
  279. </a>
  280. <a
  281. href="#"
  282. class="ga-pdp-link"
  283. data-nameforga="products_display_HUAWEI MateBook X Pro"
  284. data-position="1"
  285. >
  286. <div class="card-title">
  287. FYRO Flagship - 17.3 - I7-13700H - RTX 4090
  288. </div>
  289. </a>
  290. <!-- <div>
  291. 13th Gen Intel® Core™ Processor
  292. </div> -->
  293. </div>
  294. </div>
  295. </div>
  296. </div>
  297. </div>
  298. </div>
  299. </section>
  300. <section class="position-relative bg-black section-one d-none">
  301. <!-- <div class="d-flex justify-content-center align-items-center videospinning ">
  302. <div class="spinner-border text-info" role="status">
  303. <span class="visually-hidden">Loading...</span>
  304. </div>
  305. </div> -->
  306. <!-- <iframe class="d-none" src="https://player.vimeo.com/video/824707959?h=5b3654950a&amp&autoplay=1&loop=1&autopause=0&badge=0&player_id=0&controls=0&muted=1" width="100%" height="860px" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe> -->
  307. <div
  308. class="iframcontainer d-none"
  309. style="padding: 56.25% 0 0 0; position: relative;"
  310. >
  311. <iframe
  312. class="d-none"
  313. src="https://player.vimeo.com/video/824707959?h=5b3654950&amp&autoplay=1&loop=1&autopause=0&badge=0&player_id=0&controls=0&muted=1"
  314. frameborder="0"
  315. allow="autoplay; fullscreen; picture-in-picture"
  316. style="
  317. position: absolute;
  318. top: 0;
  319. left: 0;
  320. width: 100%;
  321. height: 100%;
  322. "
  323. title="Zeno Sleekbook"
  324. ></iframe>
  325. </div>
  326. </section>
  327. <section class="bg-black fyro_id">
  328. <div class="container py-md-5 text-white d-none">
  329. <div class="text-center">
  330. <h1 class="text-fyro">
  331. Unleashing the Beasts of Creativity & Innovation with Graphics,
  332. AI, and ML
  333. </h1>
  334. <p class="font-1-5 text-white">
  335. FYRO products are the ultimate machines for graphics, AI, and ML
  336. enthusiasts. With powerful Intel<sup>®</sup> processors and
  337. advanced NVIDIA graphic cards,
  338. <strong
  339. >FYRO laptops and all-in-ones deliver the raw power and
  340. performance</strong
  341. >
  342. needed to handle the most demanding workloads. Whether you're a
  343. gamer, video editor, or AI researcher, FYRO has the tools you need
  344. to unleash your creativity and push the boundaries of what's
  345. possible.
  346. </p>
  347. <div>
  348. <img
  349. src="./dist/assets/imgs/Home_new/Fyro_img.png"
  350. class="img-fluid w-50"
  351. alt=""
  352. />
  353. </div>
  354. </div>
  355. <p class="font-1-5 text-center mb-5 mt-4">
  356. With sleek designs and customizable features, FYRO products are the
  357. perfect blend of style and substance, offering unparalleled
  358. performance and portability in a compact package. Join the FYRO
  359. revolution and experience the power of next-gen computing today.
  360. </p>
  361. <div class="bg-blur border rounded-4 p-4">
  362. <div class="row p-md-3">
  363. <div class="col-6">
  364. <div class="row align-items-center h-100 pb-md-0 pb-3">
  365. <div class="col-md-2 col-6">
  366. <img
  367. src="./dist/assets/imgs/icons/Group 4475.svg"
  368. class="img-fluid"
  369. />
  370. </div>
  371. <p class="p-md-2 mb-0 fs-9 col-md-10 ps-md-4 pt-md-0 pt-3">
  372. Unmatched GPU Performance
  373. </p>
  374. </div>
  375. </div>
  376. <div class="col-6">
  377. <div class="row align-items-center h-100 pb-md-0 pb-3">
  378. <div class="col-md-2 col-6">
  379. <img
  380. src="./dist/assets/imgs/icons/Group 4479.svg"
  381. class="img-fluid"
  382. />
  383. </div>
  384. <p class="p-md-2 mb-0 fs-9 col-md-10 ps-md-4">
  385. High-end Gaming Capabilities
  386. </p>
  387. </div>
  388. </div>
  389. </div>
  390. <div class="row p-md-3">
  391. <div class="col-6">
  392. <div class="row align-items-center h-100">
  393. <div class="col-md-2 col-6">
  394. <img
  395. src="./dist/assets/imgs/icons/Asset 5.svg"
  396. class="img-fluid"
  397. />
  398. </div>
  399. <p class="p-md-2 mb-0 fs-9 col-md-10 ps-md-4 pt-md-0 pt-3">
  400. Thermal Tested to handle high Temp upto 105<sup>o</sup>
  401. </p>
  402. </div>
  403. </div>
  404. <div class="col-6">
  405. <div class="row align-items-center h-100">
  406. <div class="col-md-2 col-6">
  407. <img
  408. src="./dist/assets/imgs/icons/Asset 4.svg"
  409. class="img-fluid"
  410. />
  411. </div>
  412. <p
  413. class="p-md-2 mb-0 fs-9 col-md-10 ps-md-4"
  414. id="overview_data_fyro"
  415. >
  416. Decent Battery backup
  417. </p>
  418. </div>
  419. </div>
  420. </div>
  421. </div>
  422. </div>
  423. </section>
  424. <section class="bg-black zeno_id">
  425. <div class="container py-md-5 text-center text-white d-none">
  426. <h1 class="text-blue-1 m-auto">
  427. The compact powerhouse for your productivity
  428. </h1>
  429. <p class="font-1-5 my-4">
  430. Zeno products are a range of
  431. <strong
  432. >sleek, powerful, and compact non-GPU laptops and
  433. all-in-ones</strong
  434. >
  435. that offer exceptional performance and style. Built with
  436. state-of-the-art components, including the latest generation of
  437. Intel<sup>®</sup> processors,
  438. <strong>High-speed RAM, and Fast NVMe PCIe 4.0 SSDs.</strong>
  439. </p>
  440. <div class="text-center">
  441. <img
  442. class="img-fluid"
  443. src="./dist/assets/imgs/allin_imgs/Asset 1.png"
  444. alt=""
  445. />
  446. </div>
  447. <p class="font-1-2 mt-4 mb-5">
  448. Zeno products are designed to meet the needs of professionals,
  449. students, and anyone who requires a reliable and portable computing
  450. solution. With their advanced features, including customizable
  451. hotkeys, fingerprint recognition, and a variety of connectivity
  452. options, Zeno products offer the perfect blend of style and
  453. substance for those who want a high-performing computing experience
  454. in a compact package.
  455. </p>
  456. <div class="bg-blur border rounded-4 p-4 text-white">
  457. <div class="row p-md-3 text-center">
  458. <div class="col-4 border-end">
  459. <div>
  460. <img
  461. src="./dist/assets/imgs/icons/Asset 9.svg"
  462. class="h-100p p-3"
  463. />
  464. </div>
  465. <p class="p-2 mb-0 font-1-5">Sleek & Light weight</p>
  466. </div>
  467. <div class="col-4 border-end">
  468. <div>
  469. <img
  470. src="./dist/assets/imgs/icons/Group 4492.svg"
  471. class="h-100p p-3"
  472. />
  473. </div>
  474. <p class="p-2 mb-0 font-1-5">
  475. Lightening-fast Intel<sup>®</sup> Processors
  476. </p>
  477. </div>
  478. <div class="col-4">
  479. <div>
  480. <img
  481. src="./dist/assets/imgs/icons/Asset 8.svg"
  482. class="h-100p p-3"
  483. />
  484. </div>
  485. <p class="p-2 mb-0 font-1-5" id="overview_data_zeno">
  486. Stunning Display
  487. </p>
  488. </div>
  489. </div>
  490. </div>
  491. </div>
  492. </section>
  493. <div class="loadingCall">
  494. <div class="spinner-border" role="status">
  495. <span class="visually-hidden">Loading...</span>
  496. </div>
  497. </div>
  498. <div class="container mainContanierProduct d-none section-two">
  499. <div class="row">
  500. <div class="col-xl-5">
  501. <div class="left_anwi_img bgproductDGen">
  502. <div
  503. class="productDetailsShadow productDetailsMain card border-0 box-shodow"
  504. >
  505. <img
  506. src="./dist/assets/imgs/nophoto.png"
  507. alt=""
  508. class="card-img img-fluid success-img p-5"
  509. id="main_show_img"
  510. />
  511. </div>
  512. </div>
  513. <div class="bgproductDGen border-0 d-none">
  514. <div class="row">
  515. <div class="d-none">
  516. <div class="flex-column gap-2 p-2 d-none">
  517. <input type="hidden" id="productidtag" />
  518. <input type="hidden" id="itemidtag" />
  519. <div class="product-item-gallery active-gallery-img">
  520. <img
  521. src="./dist/assets/imgs/Navbar/Accessiories-1.png"
  522. alt=""
  523. class="w-100 h-100"
  524. />
  525. </div>
  526. <div class="product-item-gallery">
  527. <img
  528. src="./dist/assets/imgs/Navbar/Accessiories-2.png"
  529. alt=""
  530. class="w-100 h-100"
  531. />
  532. </div>
  533. <div class="product-item-gallery">
  534. <img
  535. src="https://www.pngall.com/wp-content/uploads/5/RAM-Memory.png"
  536. alt=""
  537. class="w-100 h-100"
  538. />
  539. </div>
  540. <div class="product-item-gallery">
  541. <img
  542. src="https://www.pngall.com/wp-content/uploads/5/RAM-Random-Access-Memory-PNG-Clipart.png"
  543. alt=""
  544. class="w-100 h-100"
  545. />
  546. </div>
  547. <div class="product-item-gallery">
  548. <img
  549. src="https://www.pngall.com/wp-content/uploads/5/RAM-PNG.png"
  550. alt=""
  551. class="w-100 h-100"
  552. />
  553. </div>
  554. </div>
  555. </div>
  556. <div
  557. class="col-xl-12"
  558. type="button"
  559. data-toggle="modal"
  560. data-target="#exampleModal"
  561. >
  562. <!-- <div class=" productDetailsShadow productDetailsMain card border-0 box-shodow d-flex justify-content-center align-items-center">
  563. <img src="./dist/assets/imgs/nophoto.png" alt="" class="card-img img-fluid success-img" id="main_show_img">
  564. </div> -->
  565. </div>
  566. </div>
  567. </div>
  568. </div>
  569. <div class="col-xl-7 p-3 pt-0 productDetailsShadow">
  570. <div class="card border-0 mt-1">
  571. <div class="preorderimgcontainer">
  572. <img
  573. src="./dist/assets/imgs/redorder.png"
  574. class="w-100 h-100 img-fluid"
  575. alt=""
  576. />
  577. </div>
  578. <div>
  579. <div>
  580. <input type="hidden" name="" id="skudetailitem" />
  581. <h5 class="productname">ORA3, M.2 NVMe SSD</h5>
  582. </div>
  583. <div class="small-font des_productdes"></div>
  584. <div><span class="price"></span></div>
  585. <div class="text-danger msgErrorDetailsItem d-none">
  586. Product out of stock
  587. </div>
  588. </div>
  589. <hr />
  590. <!-- <div class="d-none">
  591. <h5 class="my-3 smallHeadingProductDetails ">Processor And Graphics
  592. </h5>
  593. <div class="d-flex gap-2">
  594. <div class="specsmallcard borderselector card small-font p-3">
  595. Intel® Core i5-9400F
  596. </div>
  597. <div class="specsmallcard card small-font p-3">
  598. Intel® Core i5-9400F
  599. </div>
  600. </div>
  601. </div> -->
  602. <div class="pb-2 d-none">
  603. <h5 class="pt-2 smallHeadingProductDetails">Colors</h5>
  604. <!-- <div class="d-flex gap-2 colors-display-container">
  605. </div> -->
  606. <div class="d-flex gap-2">
  607. <div class="color-display-img color-display-img-active">
  608. <img
  609. src="./dist/assets/imgs/allinone/onesection.png"
  610. alt=""
  611. class="w-100 h-100"
  612. />
  613. </div>
  614. <div class="color-display-img">
  615. <img
  616. src="./dist/assets/imgs/allinone/onesection.png"
  617. alt=""
  618. class="w-100 h-100"
  619. />
  620. </div>
  621. <div class="color-display-img">
  622. <img
  623. src="./dist/assets/imgs/Navbar/Accessiories-1.png"
  624. alt=""
  625. class="w-100 h-100"
  626. />
  627. </div>
  628. </div>
  629. </div>
  630. <div id="spec-container-details"></div>
  631. <!-- <div class="pb-2 memory-parent d-none">
  632. <h5 class="py-2 smallHeadingProductDetails">Memory</h5>
  633. <div class="d-flex gap-2 memorycontainer">
  634. <div data-type="memory-desktop"
  635. class="specsmallcard borderselector card small-font p-3">
  636. Desktop
  637. </div>
  638. <div data-type="memory-laptop" class="specsmallcard card small-font p-3">
  639. Laptop
  640. </div>
  641. </div>
  642. </div>
  643. <div class="memory-details d-none">
  644. <h5 class="py-2 smallHeadingProductDetails">RAM Memory Technology</h5>
  645. <div class="d-flex gap-2 pb-2 ramtech">
  646. <div type="button" onclick="onClickHandler(this)"
  647. class="specsmallcard-mini borderselector card small-font p-3">
  648. DDR4
  649. </div>
  650. <div type="button" onclick="onClickHandler(this)"
  651. class="specsmallcard-mini card small-font p-3">
  652. DDR5
  653. </div>
  654. </div>
  655. <div>
  656. <h5 class="py-2 smallHeadingProductDetails">Computer Memory Size</h5>
  657. <div class="d-flex gap-2 computersize">
  658. <div type="button" onclick="onClickHandler(this)"
  659. class="specsmallcard-mini borderselector card small-font p-3">
  660. 8 GB
  661. </div>
  662. <div type="button" onclick="onClickHandler(this)"
  663. class="specsmallcard-mini card small-font p-3">
  664. 16 GB
  665. </div>
  666. <div type="button" onclick="onClickHandler(this)"
  667. class="specsmallcard-mini card small-font p-3">
  668. 32 GB
  669. </div>
  670. </div>
  671. </div>
  672. </div> -->
  673. <!-- <div class="pb-2 d-none">
  674. <h5 class="py-2 smallHeadingProductDetails">Storage</h5>
  675. <div class="d-flex gap-2">
  676. <div class="specsmallcard borderselector card small-font p-3">
  677. 256 GB SSD Capacity
  678. </div>
  679. <div class="specsmallcard card small-font p-3">
  680. 1 TB SSD Capacity
  681. </div>
  682. </div>
  683. </div> -->
  684. <div class="d-none">
  685. <div
  686. class="d-flex justify-content-between align-items-center py-3"
  687. >
  688. <h5 class="my-3 smallHeadingProductDetails">Quantity</h5>
  689. <a href="shopping-cart.html">
  690. <!-- <div class="btn btn-sm btn-success ">Add To Cart</div> -->
  691. <a
  692. class="btn btn-dark button_dark"
  693. href="shopping-cart.html"
  694. >Add To Cart</a
  695. >
  696. </a>
  697. </div>
  698. <div class="d-flex">
  699. <span class="qtybtn qtybtleft bgGreyLight">-</span>
  700. <span class="border-top border-bottom">
  701. <span class="px-2">1</span>
  702. </span>
  703. <span class="qtybtn qtybtright bgGreyLight">+</span>
  704. </div>
  705. </div>
  706. <div class="d-none">
  707. <div class="small-font">
  708. Check if stock is available at your pincode
  709. </div>
  710. <div>
  711. <div class="mb-3 d-flex border">
  712. <input
  713. class="form-control small-font border-0"
  714. placeholder="input your pincode to check"
  715. type="text"
  716. id="formFile"
  717. />
  718. <button class="border-0 small-font px-2">Check</button>
  719. </div>
  720. </div>
  721. </div>
  722. <hr class="d-none" />
  723. <div>
  724. <ul class="d-none">
  725. <li class="small-font">
  726. No Cost EMI Available
  727. <a class="learnMoreA" href="">Learn More</a>
  728. </li>
  729. <li class="small-font">
  730. Buy Anwi Extended Warranty 1 Year at ₹2,699
  731. <a class="learnMoreA" href="">Learn More</a>
  732. </li>
  733. <li class="small-font">
  734. Avail No Cost EMI offer with BFL EMI Network Card<a
  735. class="learnMoreA"
  736. href=""
  737. >Learn More</a
  738. >
  739. </li>
  740. <li class="small-font">
  741. Anwi Notebook Pro Drivers<a class="learnMoreA" href=""
  742. >Learn More</a
  743. >
  744. </li>
  745. </ul>
  746. </div>
  747. <hr />
  748. <div class="pb-2 quantityHTML" id="specification_data">
  749. <span>Quantity :</span>
  750. <select name="quantity" id="quantity">
  751. <option value="1">1</option>
  752. <option value="2">2</option>
  753. <option value="3">3</option>
  754. <option value="4">4</option>
  755. <option value="5">5</option>
  756. <option value="6">6</option>
  757. <option value="7">7</option>
  758. <option value="8">8</option>
  759. <option value="9">9</option>
  760. <option value="10">10</option>
  761. </select>
  762. </div>
  763. <div class="text-danger pt-2 insufficientqty d-none">
  764. Insufficient quantity
  765. </div>
  766. <div class="d-flex gap-2 mt-2">
  767. <button
  768. id="addtocart"
  769. class="w-100 bg-gradient-anwi btn bg-black text-white"
  770. style="border-radius: 5px;"
  771. >
  772. Add to cart
  773. </button>
  774. <button
  775. class="w-100 btn bg-gradient-anwi buynow bg-black text-white"
  776. style="border-radius: 5px;"
  777. >
  778. Buy Now
  779. </button>
  780. </div>
  781. </div>
  782. </div>
  783. </div>
  784. <!-- tabs -->
  785. <div class="row tabsContainer">
  786. <div class="col-lg-12">
  787. <div
  788. class="dec-review-topbar no-transition nav mb-65 productdetailstabs d-flex gap-4"
  789. role="tablist"
  790. >
  791. <!-- <a class="active font-1-5 no-transition" data-bs-toggle="tab" href="#des-details1" aria-selected="true" role="tab">Description</a> -->
  792. <a
  793. href="#des-details2"
  794. aria-selected="false"
  795. role="tab"
  796. class="fw-600 font-1-5 no-transition w-100 text-center py-2 bg-gray-background"
  797. tabindex="-1"
  798. >Specification</a
  799. >
  800. </div>
  801. <div class="tab-content dec-review-bottom">
  802. <!-- <div id="des-details1" class="tab-pane active show" role="tabpanel">
  803. <div class="description-wrap wrap-content-product-tabs">
  804. <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Suscipit, recusandae! Alias tempore, molestias, architecto provident excepturi voluptate non repellendus, repellat a quis iusto consequuntur quas beatae fugit nisi totam ratione nesciunt reiciendis quod? Quae, consequuntur quasi. Laudantium, doloribus aliquam incidunt error qui itaque aperiam quia ducimus cupiditate, magnam aliquid iste molestiae eveniet? Eaque veniam illo hic, possimus dolorum quaerat ratione in ex voluptas itaque ullam, maiores iusto illum blanditiis sequi. Ex, ab nemo vero libero pariatur architecto culpa! Recusandae at fugiat itaque libero amet corporis exercitationem dolorum? Tenetur repellat tempora perspiciatis quibusdam maxime facilis necessitatibus eius sint corporis nihil! Accusantium.</p>
  805. </div>
  806. </div> -->
  807. <div
  808. id="des-details2"
  809. class="tab-pane active show"
  810. role="tabpanel"
  811. >
  812. <!-- <div class="specification-wrap table-responsive">
  813. <table class="table table-bordered wrap-content-product-tabs">
  814. <tbody class="append-specs">
  815. <tr>
  816. <td class="width1">Data Transfer Rate</td>
  817. <td>Anwi Ram</td>
  818. </tr>
  819. <tr>
  820. <td>Memory Speed</td>
  821. <td>3200</td>
  822. </tr>
  823. </tbody>
  824. </table>
  825. </div> -->
  826. <div class="specContainer mt-3">
  827. <!-- <div class="d-flex gap-5 specContainer mt-3"> -->
  828. <div class="specContainerleft">
  829. <div
  830. class="accordion custom-accordion text-dark"
  831. id="faqAccordion"
  832. >
  833. <div class="accordion-item custom-accordion-item">
  834. <h2
  835. class="accordion-header custom-accordion-header"
  836. id="questionOneHeader"
  837. >
  838. <button
  839. class="accordion-button bg-white text-dark custom-accordion-button"
  840. type="button"
  841. data-bs-toggle="collapse"
  842. data-bs-target="#answerOne"
  843. aria-expanded="true"
  844. aria-controls="answerOne"
  845. >
  846. <div
  847. id="answerOne"
  848. class="accordion-collapse collapse show custom-accordion-content"
  849. aria-labelledby="questionOneHeader"
  850. data-bs-parent="#faqAccordion"
  851. >
  852. <div class="accordion-body custom-accordion-body">
  853. Windows 11 Home/Windows 11 Pro
  854. </div>
  855. </div>
  856. </button>
  857. </h2>
  858. </div>
  859. <div class="accordion-item border-x-none py-4">
  860. <h2 class="accordion-header" id="${mainid}">
  861. <button
  862. class="accordion-button bg-white text-dark"
  863. type="button"
  864. data-bs-toggle="collapse"
  865. data-bs-target="#${id}_child"
  866. aria-expanded="true"
  867. aria-controls="${id}_child"
  868. >
  869. <span
  870. class="font-weight-600 font-5 text-dark acc-specs-name"
  871. >${name}</span
  872. >
  873. </button>
  874. </h2>
  875. <div>
  876. <div
  877. id="${id}_child"
  878. class="accordion-collapse collapse w-100 show"
  879. aria-labelledby="${mainid}"
  880. >
  881. <div
  882. class="accordion-body d-flex justify-content-right"
  883. >
  884. <div class="text-secondary">${body}</div>
  885. </div>
  886. </div>
  887. </div>
  888. </div>
  889. <div class="accordion-item">
  890. <h2
  891. class="accordion-header"
  892. id="panelsStayOpen-headingOne"
  893. >
  894. <button
  895. class="accordion-button"
  896. type="button"
  897. data-bs-toggle="collapse"
  898. data-bs-target="#panelsStayOpen-collapseOne"
  899. aria-expanded="true"
  900. aria-controls="panelsStayOpen-collapseOne"
  901. >
  902. <span class="font-weight-600 font-1-5 text-dark">
  903. Operating System</span
  904. >
  905. <div
  906. id="panelsStayOpen-collapseOne"
  907. class="accordion-collapse collapse show"
  908. aria-labelledby="panelsStayOpen-headingOne"
  909. >
  910. <div class="accordion-body">
  911. <strong
  912. >This is the first item's accordion
  913. body.</strong
  914. >
  915. It is shown by default, until the collapse
  916. plugin adds the appropriate classes that we use
  917. to style each element. These classes control the
  918. overall appearance, as well as the showing and
  919. hiding via CSS transitions. You can modify any
  920. of this with custom CSS or overriding our
  921. default variables. It's also worth noting that
  922. just about any HTML can go within the
  923. <code>.accordion-body</code>, though the
  924. transition does limit overflow.
  925. </div>
  926. </div>
  927. </button>
  928. </h2>
  929. </div>
  930. <!-- ... other accordion items ... -->
  931. </div>
  932. </div>
  933. <div class="specContainerRight">
  934. <div class="">
  935. <div class="row border-bottom">
  936. <div class="col-sm-6 bg-gray-3">
  937. Item part number
  938. </div>
  939. <div class="col-sm-6">
  940. AWLD54816M
  941. </div>
  942. </div>
  943. </div>
  944. <div class="">
  945. <div class="row border-bottom">
  946. <div class="col-sm-6 bg-gray-3">
  947. RAM Size
  948. </div>
  949. <div class="col-sm-6">
  950. 16 GB
  951. </div>
  952. </div>
  953. </div>
  954. <div class="">
  955. <div class="row border-bottom">
  956. <div class="col-sm-6 bg-gray-3">
  957. Ram Memory Technology
  958. </div>
  959. <div class="col-sm-6">
  960. DDR5, SO-DIMM
  961. </div>
  962. </div>
  963. </div>
  964. </div>
  965. </div>
  966. </div>
  967. </div>
  968. </div>
  969. </div>
  970. </div>
  971. </main>
  972. <!-- footer -->
  973. <div id="footer-head" class="sec-space-1"></div>
  974. <!-- end-footer -->
  975. <!-- <script src="https://player.vimeo.com/api/player.js"></script> -->
  976. <script src="./dist/js/components/authloader/authloader.js"></script>
  977. <script src="./dist/js/jquery.min.js"></script>
  978. <script src="./libs/bootstrap/js/bootstrap.bundle.min.js"></script>
  979. <script src="./libs/owlcarousel/js/owl.carousel.min.js"></script>
  980. <script src="./libs/axios.min.js"></script>
  981. <script src="./libs/cookies.min.js"></script>
  982. <script src="./dist/js/fontawesome.all.js"></script>
  983. <script src="./dist/js/fontawesome.min.js"></script>
  984. <script src="./dist/js/vendor/modernizr-3.11.7.min.js"></script>
  985. <script src="./dist/js/vendor/jquery-v3.6.0.min.js"></script>
  986. <script src="./dist/js/vendor/jquery-migrate-v3.3.2.min.js"></script>
  987. <!-- <script src="./dist/js/vendor/bootstrap.min.js"></script> -->
  988. <script src="./dist/js/plugins/slick.js"></script>
  989. <script src="./dist/js/plugins/wow.js"></script>
  990. <script src="./dist/js/plugins/svg-injector.min.js"></script>
  991. <script src="./dist/js/plugins/jquery.nice-select.min.js"></script>
  992. <script src="./dist/js/plugins/mouse-parallax.js"></script>
  993. <script src="./dist/js/plugins/images-loaded.js"></script>
  994. <script src="./dist/js/plugins/isotope.js"></script>
  995. <script src="./dist/js/plugins/jquery-ui.js"></script>
  996. <script src="./dist/js/plugins/magnific-popup.js"></script>
  997. <script src="./dist/js/validate.min.js"></script>
  998. <script src="./dist/toaster/toastr.js"></script>
  999. <script src="./dist/js/utils/helpers.js"></script>
  1000. <script src="./dist/js/auth/apiservice.js"></script>
  1001. <script src="./dist/js/shoppingcart/addtocart.js"></script>
  1002. <script src="./dist/js/shoppingcart/shoppingcart.js"></script>
  1003. <!-- <script src="./dist/js/productdetails/productdetails.js"></script> -->
  1004. <script src="./dist/js/navbar.js"></script>
  1005. <script src="./dist/js/footer.js"></script>
  1006. <script src="./dist/js/main.js"></script>
  1007. <script src="./dist/js/productdetails/laptopd.js"></script>
  1008. <script>
  1009. let searchTerm = window.location.search.split("?")[1]?.toLowerCase();
  1010. if (searchTerm) {
  1011. if (searchTerm == "zeno") {
  1012. $(".fyro_id").addClass("d-none");
  1013. // $('.zeno_id').removeClass('d-none');
  1014. $(".productitemnamefull").html("Zeno");
  1015. } else if (searchTerm == "fyro") {
  1016. $(".zeno_id").addClass("d-none");
  1017. // $('.fyro_id').removeClass('d-none');
  1018. $(".productitemnamefull").html("Fyro");
  1019. } else if (searchTerm == "aio%20zeno") {
  1020. $(".fyro_id").addClass("d-none");
  1021. // $('.zeno_id').removeClass('d-none');
  1022. } else if (searchTerm == "aio%20fyro") {
  1023. $(".zeno_id").addClass("d-none");
  1024. // $('.fyro_id').removeClass('d-none');
  1025. }
  1026. } else {
  1027. $(".productitemnamefull").parent().addClass("d-none");
  1028. }
  1029. let ram_page = window.location.pathname;
  1030. let loc_3 = ram_page.includes("laptops.html");
  1031. if (loc_3 === true) {
  1032. let imgs = `./dist/assets/imgs/anwi-logo-1.png`;
  1033. $(".main-menu")
  1034. .find("nav ul li a")
  1035. .addClass("text-dark")
  1036. .removeClass("text-white");
  1037. $(".logo-menu-wrap").find(".logo img").attr("src", imgs);
  1038. // $('.same-style').find('svg path').attr('fill', '#fff');
  1039. // $('svg path').attr('fill', '#fff');
  1040. }
  1041. let loc_path = "?FYRO";
  1042. if (window.location.href.includes(loc_path)) {
  1043. $(".sticky-bar").addClass("stick");
  1044. $(".satoshi_font").removeClass("text-white");
  1045. let imgs = `./dist/assets/imgs/anwi-logo-1.png`;
  1046. $(".logo-menu-wrap").find(".logo img").attr("src", imgs);
  1047. $(".main-menu")
  1048. .find("nav ul li a")
  1049. .removeClass("text-dark")
  1050. .addClass("text-white");
  1051. $("iframe").addClass("d-none");
  1052. $(".iframcontainer").addClass("d-none");
  1053. $(".fyro_id").find(".container").addClass("pt-5");
  1054. } else if (window.location.href.includes("?Zeno")) {
  1055. $(".sticky-bar").addClass("stick");
  1056. $(".satoshi_font").removeClass("text-white");
  1057. $("iframe").removeClass("d-none");
  1058. $(".iframcontainer").removeClass("d-none");
  1059. // if($(window).width()<=768){
  1060. // $("iframe").attr("width","100%").attr("height","300")
  1061. // }
  1062. let imgs = `./dist/assets/imgs/anwi-logo-1.png`;
  1063. $(".main-menu")
  1064. .find("nav ul li a")
  1065. .removeClass("text-dark")
  1066. .addClass("text-white");
  1067. $(".logo-menu-wrap").find(".logo img").attr("src", imgs);
  1068. $(".same-style").find("svg path").attr("fill", "#000");
  1069. $("svg path").attr("fill", "#000");
  1070. }
  1071. let product_page = window.location.pathname;
  1072. let loc = product_page.includes("?FYRO");
  1073. if (loc === true) {
  1074. $(".fyro_id").addClass("d-none");
  1075. } else {
  1076. // laptopdetails.html
  1077. // $(".sub_nav_container").removeClass("d-none");
  1078. }
  1079. setTimeout(function () {
  1080. $(".header-bottom").addClass("bg-white");
  1081. $(".sticky-bar").addClass("stick");
  1082. $(".main-menu").find("nav a.satoshi_font").removeClass("text-white");
  1083. let imgs = `./dist/assets/imgs/anwi-logo-1.png`;
  1084. $(".same-style").find("svg path").attr("fill", "#000");
  1085. $("svg path").attr("fill", "#000");
  1086. $(".logo-menu-wrap").find(".logo img").attr("src", imgs);
  1087. }, 1000);
  1088. // $(".img-magnifier-glass").css("display", "none !important;");
  1089. $(".productDetailsMain").on("mouseenter", function () {
  1090. let magnific_glass = $(".img-magnifier-glass").length;
  1091. if (magnific_glass > 1) {
  1092. for (let i = 1; i < magnific_glass; i++) {
  1093. let val = i - 1;
  1094. $(".img-magnifier-glass")[val].remove();
  1095. }
  1096. }
  1097. $(".img-magnifier-glass").removeClass("d-none");
  1098. });
  1099. $(".productDetailsMain").on("mouseleave", function () {
  1100. $(".img-magnifier-glass").addClass("d-none");
  1101. });
  1102. </script>
  1103. </body>
  1104. </html>