如何在我的作品集网站上创建具有悬停缩放动画的非对称按钮的最佳方法?

huangapple go评论85阅读模式
英文:

What's the best way to create non-symmetrical buttons with scaling animations on hover for my portfolio website?

问题

Here's the translated part of your text:

"所以我正在尝试制作这个网站,并将其用作我的作品集,因为我开始找工作了。

我在创建网站方面遇到了一些问题,尤其是我想要创建的动画方面。

基本上,我想要的是这个网站上的动画效果:https://www.milli.agency

我想要的是非对称的按钮,当我将鼠标悬停在它们上面时,它们会变大并将其他按钮推到一边,而不会重叠在自己身上。

我已经做得有点远了,但现在我在模仿这个效果时遇到了一些问题。

以下是我迄今为止的代码:

HTML:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Portifólio João Pedro</title>
  8. <link rel="stylesheet" href="style.css">
  9. </head>
  10. <body>
  11. <div class="container">
  12. <div class="button">
  13. <button>Botão 1</button>
  14. </div>
  15. <div class="button">
  16. <button>Botão 2</button>
  17. </div>
  18. <div class="button">
  19. <button>Botão 3</button>
  20. </div>
  21. <div class="button">
  22. <button>Botão 4</button>
  23. </div>
  24. </div>
  25. </body>
  26. </html>

CSS:

  1. body, html {
  2. height: 100%;
  3. margin: 0;
  4. padding: 0;
  5. }
  6. .container {
  7. display: grid;
  8. height: 100%;
  9. grid-template-columns: repeat(2, 1fr);
  10. grid-template-rows: repeat(2, 1fr);
  11. grid-gap: 20px;
  12. }
  13. .button {
  14. flex: 1;
  15. display: flex;
  16. align-items: center;
  17. justify-content: center;
  18. background-color: #f0f0f0;
  19. transition: transform 0.3s ease-in-out, z-index 0.3s;
  20. }
  21. .button button {
  22. width: 100%;
  23. height: 100%;
  24. }
  25. .container:hover .button:not(:hover) {
  26. transition-delay: 0s !important;
  27. transform: translateX(0);
  28. z-index: 0;
  29. }
  30. .container:hover .button:hover {
  31. transform: scale(1.1);
  32. z-index: 1;
  33. }
  34. .container:hover .button:hover ~ .button {
  35. transition-delay: 0.1s;
  36. transform: translateX(15%);
  37. }

请问还有其他需要帮助的吗?

英文:

So I'm trying to make this website and use it as my portfolio, since I'm starting to get a job.

I'm having some issues with creating the website, more so with the animation that I want to create.

Pretty much what I want to do is this animation on this website: https://www.milli.agency

What I want are buttons that are not symmetrical and when I hover my mouse over them, they get bigger and push the other buttons to the side, without them overlapping with themselves

I got kinda far, but now I having some issues in mimicking this affect.

Here's the code I got so far:

HTML:

  1. &lt;!DOCTYPE html&gt;
  2. &lt;html lang=&quot;en&quot;&gt;
  3. &lt;head&gt;
  4. &lt;meta charset=&quot;UTF-8&quot;&gt;
  5. &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;
  6. &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;
  7. &lt;title&gt;Portif&#243;lio Jo&#227;o Pedro&lt;/title&gt;
  8. &lt;link rel=&quot;stylesheet&quot; href=&quot;style.css&quot;&gt;
  9. &lt;/head&gt;
  10. &lt;body&gt;
  11. &lt;div class=&quot;container&quot;&gt;
  12. &lt;div class=&quot;button&quot;&gt;
  13. &lt;button&gt;Bot&#227;o 1&lt;/button&gt;
  14. &lt;/div&gt;
  15. &lt;div class=&quot;button&quot;&gt;
  16. &lt;button&gt;Bot&#227;o 2&lt;/button&gt;
  17. &lt;/div&gt;
  18. &lt;div class=&quot;button&quot;&gt;
  19. &lt;button&gt;Bot&#227;o 3&lt;/button&gt;
  20. &lt;/div&gt;
  21. &lt;div class=&quot;button&quot;&gt;
  22. &lt;button&gt;Bot&#227;o 4&lt;/button&gt;
  23. &lt;/div&gt;
  24. &lt;/div&gt;
  25. &lt;/body&gt;
  26. &lt;/html&gt;

CSS:

  1. body, html {
  2. height: 100%;
  3. margin: 0;
  4. padding: 0;
  5. }
  6. .container {
  7. display: grid;
  8. height: 100%;
  9. grid-template-columns: repeat(2, 1fr);
  10. grid-template-rows: repeat(2, 1fr);
  11. grid-gap: 20px;
  12. }
  13. .button {
  14. flex: 1;
  15. display: flex;
  16. align-items: center;
  17. justify-content: center;
  18. background-color: #f0f0f0;
  19. transition: transform 0.3s ease-in-out, z-index 0.3s;
  20. }
  21. .button button {
  22. width: 100%;
  23. height: 100%;
  24. }
  25. .container:hover .button:not(:hover) {
  26. transition-delay: 0s !important;
  27. transform: translateX(0);
  28. z-index: 0;
  29. }
  30. .container:hover .button:hover {
  31. transform: scale(1.1);
  32. z-index: 1;
  33. }
  34. .container:hover .button:hover ~ .button {
  35. transition-delay: 0.1s;
  36. transform: translateX(15%);
  37. }

What an I missing, I just starting it out, but tried to look at youtube, websites but haven't found much on the subject.

How can I make this same effect, is it better with JavaScript, continue with CSS, I at a loss right now, can you guys help me?

I tried looking at articles online, youtube, but that's about it.

What I'm looking for is an effect similar to the one I gave an exemple of: https://www.milli.agency

答案1

得分: 0

一切都很好,但您假设此页面仅使用HTML和CSS构建,但您可以看到他们正在使用两个jQuery库来构建此结构。这是我为您编写的一个简单示例结构。

  1. <!DOCTYPE html>
  2. <html data-wf-page="60ee32414a2efc10344a2943">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Portifólio João Pedro</title>
  8. <!-- 在<head>标签中必须使用此jQuery文件 -->
  9. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
  10. <style>
  11. * {
  12. box-sizing: border-box;
  13. }
  14. .home_topleft {
  15. z-index: 1;
  16. width: 60%;
  17. height: 40%;
  18. background-color: #fff;
  19. border: 2px solid #000;
  20. justify-content: center;
  21. align-items: center;
  22. text-decoration: none;
  23. display: flex;
  24. position: absolute;
  25. top: 0;
  26. bottom: auto;
  27. left: 0;
  28. right: auto;
  29. }
  30. .home_topright {
  31. z-index: 1;
  32. width: 40%;
  33. height: 60%;
  34. background-color: #fff;
  35. border: 2px solid #000;
  36. justify-content: center;
  37. align-items: center;
  38. text-decoration: none;
  39. display: flex;
  40. position: absolute;
  41. top: 0;
  42. bottom: auto;
  43. left: auto;
  44. right: 0;
  45. }
  46. .home_bottomleft {
  47. z-index: 1;
  48. width: 40%;
  49. height: 60%;
  50. background-color: #fff;
  51. border: 2px solid #000;
  52. justify-content: center;
  53. align-items: center;
  54. text-decoration: none;
  55. display: flex;
  56. position: absolute;
  57. top: auto;
  58. bottom: 0;
  59. left: 0;
  60. right: auto;
  61. }
  62. .home_bottomright {
  63. z-index: 1;
  64. width: 60%;
  65. height: 40%;
  66. background-color: #fff;
  67. border: 2px solid #000;
  68. justify-content: center;
  69. align-items: center;
  70. text-decoration: none;
  71. display: flex;
  72. position: absolute;
  73. top: auto;
  74. bottom: 0;
  75. left: auto;
  76. right: 0;
  77. }
  78. .button {
  79. color: #141414;
  80. text-transform: uppercase;
  81. font-family: forma-djr-micro, sans-serif;
  82. font-size: 50px;
  83. font-weight: 400;
  84. text-decoration: none;
  85. }
  86. </style>
  87. </head>
  88. <body>
  89. <div class="container">
  90. <div data-w-id="9f559ef3-4e19-84e1-5e56-79b9baf05265" class="home_topleft">
  91. <button class="button">Botão 1</button>
  92. </div>
  93. <div data-w-id="880c7618-5f6d-2872-3471-33319b77ef48" class="home_bottomleft">
  94. <button class="button">Botão 2</button>
  95. </div>
  96. <div data-w-id="7facf194-1e43-1b25-657e-fe8951eda355" class="home_bottomright">
  97. <button class="button">Botão 3</button>
  98. </div>
  99. <div data-w-id="715b8783-f7e3-4501-693f-23e82a031fdf" class="home_topright">
  100. <button class="button">Botão 4</button>
  101. </div>
  102. </div>
  103. <!-- 在</body>标签关闭之前使用此jQuery文件 -->
  104. <script src="https://assets.website-files.com/60ee32414a2efcb87f4a2940/js/millinextgen.4ad3efe9f.js" type="text/javascript"></script>
  105. </body>
  106. </html>
英文:

Everything is fine but you are assuming that this page is only built with HTML & CSS but you can see that they are using two J-query libraries to build this structure. Here is one simple example structure I wrote for you.

  1. &lt;!DOCTYPE html&gt;
  2. &lt;html data-wf-page=&quot;60ee32414a2efc10344a2943&quot;&gt;&lt;head&gt;
  3. &lt;head&gt;
  4. &lt;meta charset=&quot;UTF-8&quot;&gt;
  5. &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;
  6. &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;
  7. &lt;title&gt;Portif&#243;lio Jo&#227;o Pedro&lt;/title&gt;
  8. &lt;!--Must Use this Jquery file in &lt;head&gt; Tag--&gt;
  9. &lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js&quot;&gt;&lt;/script&gt;
  10. &lt;style&gt;
  11. * {
  12. box-sizing: border-box;
  13. }
  14. .home_topleft {
  15. z-index: 1;
  16. width: 60%;
  17. height: 40%;
  18. background-color: #fff;
  19. border: 2px solid #000;
  20. justify-content: center;
  21. align-items: center;
  22. text-decoration: none;
  23. display: flex;
  24. position: absolute;
  25. top: 0;
  26. bottom: auto;
  27. left: 0;
  28. right: auto;
  29. }
  30. .home_topright {
  31. z-index: 1;
  32. width: 40%;
  33. height: 60%;
  34. background-color: #fff;
  35. border: 2px solid #000;
  36. justify-content: center;
  37. align-items: center;
  38. text-decoration: none;
  39. display: flex;
  40. position: absolute;
  41. top: 0;
  42. bottom: auto;
  43. left: auto;
  44. right: 0;
  45. }
  46. .home_bottomleft {
  47. z-index: 1;
  48. width: 40%;
  49. height: 60%;
  50. background-color: #fff;
  51. border: 2px solid #000;
  52. justify-content: center;
  53. align-items: center;
  54. text-decoration: none;
  55. display: flex;
  56. position: absolute;
  57. top: auto;
  58. bottom: 0;
  59. left: 0;
  60. right: auto;
  61. }
  62. .home_bottomright {
  63. z-index: 1;
  64. width: 60%;
  65. height: 40%;
  66. background-color: #fff;
  67. border: 2px solid #000;
  68. justify-content: center;
  69. align-items: center;
  70. text-decoration: none;
  71. display: flex;
  72. position: absolute;
  73. top: auto;
  74. bottom: 0;
  75. left: auto;
  76. right: 0;
  77. }
  78. .button {
  79. color: #141414;
  80. text-transform: uppercase;
  81. font-family: forma-djr-micro, sans-serif;
  82. font-size: 50px;
  83. font-weight: 400;
  84. text-decoration: none;
  85. }
  86. &lt;/style&gt;
  87. &lt;/head&gt;
  88. &lt;body&gt;
  89. &lt;div class=&quot;container&quot;&gt;
  90. &lt;div data-w-id=&quot;9f559ef3-4e19-84e1-5e56-79b9baf05265&quot; class=&quot;home_topleft&quot;&gt;
  91. &lt;button class=&quot;button&quot;&gt;Bot&#227;o 1&lt;/button&gt;
  92. &lt;/div&gt;&lt;div data-w-id=&quot;880c7618-5f6d-2872-3471-33319b77ef48&quot; class=&quot;home_bottomleft&quot;&gt;
  93. &lt;button class=&quot;button&quot;&gt;Bot&#227;o 2&lt;/button&gt;
  94. &lt;/div&gt;&lt;div data-w-id=&quot;7facf194-1e43-1b25-657e-fe8951eda355&quot; class=&quot;home_bottomright&quot;&gt;
  95. &lt;button class=&quot;button&quot;&gt;Bot&#227;o 3&lt;/button&gt;
  96. &lt;/div&gt;&lt;div data-w-id=&quot;715b8783-f7e3-4501-693f-23e82a031fdf&quot; class=&quot;home_topright&quot;&gt;
  97. &lt;button class=&quot;button&quot;&gt;Bot&#227;o 4&lt;/button&gt;&lt;/div&gt;
  98. &lt;/div&gt;
  99. &lt;!-- Use this Jquery file just before close the &lt;/body&gt; tag--&gt;
  100. &lt;script src=&quot;https://assets.website-files.com/60ee32414a2efcb87f4a2940/js/millinextgen.4ad3efe9f.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
  101. &lt;/body&gt;&lt;/html&gt;

答案2

得分: 0

以下是您提供的代码的翻译部分:

  1. 这里您可以检查我为您编写的新代码
  2. <!DOCTYPE html>
  3. <html data-wf-page="60ee32414a2efc10344a2943">
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8. <title>Portfólio João Pedro</title>
  9. <!--在<head>标签中必须使用此Jquery文件-->
  10. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
  11. <style>
  12. * {
  13. box-sizing: border-box;
  14. }
  15. .home_topleft {
  16. z-index: 1;
  17. width: 60%;
  18. height: 40%;
  19. background-color: #fff;
  20. border: 2px solid #000;
  21. justify-content: center;
  22. align-items: center;
  23. text-decoration: none;
  24. display: flex;
  25. position: absolute;
  26. top: 0;
  27. bottom: auto;
  28. left: 0;
  29. right: auto;
  30. }
  31. .home_topright {
  32. z-index: 1;
  33. width: 40%;
  34. height: 60%;
  35. background-color: #fff;
  36. border: 2px solid #000;
  37. justify-content: center;
  38. align-items: center;
  39. text-decoration: none;
  40. display: flex;
  41. position: absolute;
  42. top: 0;
  43. bottom: auto;
  44. left: auto;
  45. right: 0;
  46. }
  47. .home_bottomleft {
  48. z-index: 1;
  49. width: 40%;
  50. height: 60%;
  51. background-color: #fff;
  52. border: 2px solid #000;
  53. justify-content: center;
  54. align-items: center;
  55. text-decoration: none;
  56. display: flex;
  57. position: absolute;
  58. top: auto;
  59. bottom: 0;
  60. left: 0;
  61. right: auto;
  62. }
  63. .home_bottomright {
  64. z-index: 1;
  65. width: 60%;
  66. height: 40%;
  67. background-color: #fff;
  68. border: 2px solid #000;
  69. justify-content: center;
  70. align-items: center;
  71. text-decoration: none;
  72. display: flex;
  73. position: absolute;
  74. top: auto;
  75. bottom: 0;
  76. left: auto;
  77. right: 0;
  78. }
  79. .logo {
  80. z-index: 10;
  81. width: 20%;
  82. height: 20%;
  83. background-color: #6200ff;
  84. border: 1px #000;
  85. justify-content: center;
  86. align-items: center;
  87. padding-bottom: 9px;
  88. display: flex;
  89. position: absolute;
  90. top: 40%;
  91. left: 40%;
  92. }
  93. .button {
  94. color: #141414;
  95. text-transform: uppercase;
  96. font-family: forma-djr-micro, sans-serif;
  97. font-size: 50px;
  98. font-weight: 400;
  99. text-decoration: none;
  100. }
  101. .container {
  102. margin: 48px;
  103. position: absolute;
  104. top: 0%;
  105. bottom: 0%;
  106. left: 0%;
  107. right: 0%;
  108. }
  109. @media screen and (max-width: 991px) {
  110. .home_topleft, .home_topright, .home_bottomleft, .home_bottomright {
  111. width: 100%;
  112. height: 18%;
  113. border-width: 1px;
  114. position: static;
  115. }
  116. .logo {
  117. width: 100%;
  118. height: 28%;
  119. border-width: 1px;
  120. justify-content: center;
  121. align-items: center;
  122. margin-top: 0;
  123. position: static;
  124. }
  125. }
  126. </style>
  127. </head>
  128. <body>
  129. <div class="container">
  130. <div data-w-id="d2f42698-9a2a-e9a1-ebc5-04b930731124" class="logo" style="width: 20%; height: 20%; transform: translate3d(-80%, 60%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg); transform-style: preserve-3d;">
  131. <button class="button">Botão 5</button>
  132. </div>
  133. <div data-w-id="9f559ef3-4e19-84e1-5e56-79b9baf05265" class="home_topleft">
  134. <button class="button">Botão 1</button>
  135. </div>
  136. <div data-w-id="880c7618-5f6d-2872-3471-33319b77ef48" class="home_bottomleft">
  137. <button class="button">Botão 2</button>
  138. </div>
  139. <div data-w-id="7facf194-1e43-1b25-657e-fe8951eda355" class="home_bottomright">
  140. <button class="button">Botão 3</button>
  141. </div>
  142. <div data-w-id="715b8783-f7e3-4501-693f-23e82a031fdf" class="home_topright">
  143. <button class="button">Botão 4</button>
  144. </div>
  145. </div>
  146. <!-- 在关闭<body>标签之前使用此Jquery文件 -->
  147. <script src="https://assets.website-files.com/60ee32414a2efcb87f4a2940/js/millinextgen.4ad3efe9f.js" type="text/javascript"></script>
  148. </body>
  149. </html>
  150. 如果您想要离线运行此代码或自行托管,请将JavaScript文件保存在您的设备或托管中(在浏览器中打开HTML页面 -> 右键单击 -> 查看页面源代码 -> 右键单击JavaScript文件 -> 另存为),然后替换路径以指向该文件。

请注意,我只提供了代码的翻译部分,没有包括代码的解释或其他信息。如果您有任何其他疑问或需要进一步的帮助,请随时提出。

英文:

Here you can check I have written a new code for you

  1. &lt;!DOCTYPE html&gt;
  2. &lt;html data-wf-page=&quot;60ee32414a2efc10344a2943&quot;&gt;&lt;head&gt;
  3. &lt;head&gt;
  4. &lt;meta charset=&quot;UTF-8&quot;&gt;
  5. &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;
  6. &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;
  7. &lt;title&gt;Portif&#243;lio Jo&#227;o Pedro&lt;/title&gt;
  8. &lt;!--Must Use this Jquery file in &lt;head&gt; Tag--&gt;
  9. &lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js&quot;&gt;&lt;/script&gt;
  10. &lt;style&gt;
  11. * {
  12. box-sizing: border-box;
  13. }
  14. .home_topleft {
  15. z-index: 1;
  16. width: 60%;
  17. height: 40%;
  18. background-color: #fff;
  19. border: 2px solid #000;
  20. justify-content: center;
  21. align-items: center;
  22. text-decoration: none;
  23. display: flex;
  24. position: absolute;
  25. top: 0;
  26. bottom: auto;
  27. left: 0;
  28. right: auto;
  29. }
  30. .home_topright {
  31. z-index: 1;
  32. width: 40%;
  33. height: 60%;
  34. background-color: #fff;
  35. border: 2px solid #000;
  36. justify-content: center;
  37. align-items: center;
  38. text-decoration: none;
  39. display: flex;
  40. position: absolute;
  41. top: 0;
  42. bottom: auto;
  43. left: auto;
  44. right: 0;
  45. }
  46. .home_bottomleft {
  47. z-index: 1;
  48. width: 40%;
  49. height: 60%;
  50. background-color: #fff;
  51. border: 2px solid #000;
  52. justify-content: center;
  53. align-items: center;
  54. text-decoration: none;
  55. display: flex;
  56. position: absolute;
  57. top: auto;
  58. bottom: 0;
  59. left: 0;
  60. right: auto;
  61. }
  62. .home_bottomright {
  63. z-index: 1;
  64. width: 60%;
  65. height: 40%;
  66. background-color: #fff;
  67. border: 2px solid #000;
  68. justify-content: center;
  69. align-items: center;
  70. text-decoration: none;
  71. display: flex;
  72. position: absolute;
  73. top: auto;
  74. bottom: 0;
  75. left: auto;
  76. right: 0;
  77. }
  78. .logo {
  79. z-index: 10;
  80. width: 20%;
  81. height: 20%;
  82. background-color: #6200ff;
  83. border: 1px #000;
  84. justify-content: center;
  85. align-items: center;
  86. padding-bottom: 9px;
  87. display: flex;
  88. position: absolute;
  89. top: 40%;
  90. left: 40%;
  91. }
  92. .button {
  93. color: #141414;
  94. text-transform: uppercase;
  95. font-family: forma-djr-micro, sans-serif;
  96. font-size: 50px;
  97. font-weight: 400;
  98. text-decoration: none;
  99. }
  100. .container {
  101. margin: 48px;
  102. position: absolute;
  103. top: 0%;
  104. bottom: 0%;
  105. left: 0%;
  106. right: 0%;
  107. }
  108. @media screen and (max-width: 991px) {
  109. .home_topleft, .home_topright, .home_bottomleft, .home_bottomright {
  110. width: 100%;
  111. height: 18%;
  112. border-width: 1px;
  113. position: static;
  114. }
  115. .logo {
  116. width: 100%;
  117. height: 28%;
  118. border-width: 1px;
  119. justify-content: center;
  120. align-items: center;
  121. margin-top: 0;
  122. position: static;
  123. } }
  124. &lt;/style&gt;
  125. &lt;/head&gt;
  126. &lt;body&gt;
  127. &lt;div class=&quot;container&quot;&gt;
  128. &lt;div data-w-id=&quot;d2f42698-9a2a-e9a1-ebc5-04b930731124&quot; class=&quot;logo&quot; style=&quot;width: 20%; height: 20%; transform: translate3d(-80%, 60%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg); transform-style: preserve-3d;&quot;&gt;
  129. &lt;button class=&quot;button&quot;&gt;Bot&#227;o 5&lt;/button&gt;
  130. &lt;/div&gt;
  131. &lt;div data-w-id=&quot;9f559ef3-4e19-84e1-5e56-79b9baf05265&quot; class=&quot;home_topleft&quot;&gt;
  132. &lt;button class=&quot;button&quot;&gt;Bot&#227;o 1&lt;/button&gt;
  133. &lt;/div&gt;&lt;div data-w-id=&quot;880c7618-5f6d-2872-3471-33319b77ef48&quot; class=&quot;home_bottomleft&quot;&gt;
  134. &lt;button class=&quot;button&quot;&gt;Bot&#227;o 2&lt;/button&gt;
  135. &lt;/div&gt;&lt;div data-w-id=&quot;7facf194-1e43-1b25-657e-fe8951eda355&quot; class=&quot;home_bottomright&quot;&gt;
  136. &lt;button class=&quot;button&quot;&gt;Bot&#227;o 3&lt;/button&gt;
  137. &lt;/div&gt;&lt;div data-w-id=&quot;715b8783-f7e3-4501-693f-23e82a031fdf&quot; class=&quot;home_topright&quot;&gt;
  138. &lt;button class=&quot;button&quot;&gt;Bot&#227;o 4&lt;/button&gt;&lt;/div&gt;
  139. &lt;/div&gt;
  140. &lt;!-- Use this Jquery file just before close the &quot;body&quot; tag--&gt;
  141. &lt;script src=&quot;https://assets.website-files.com/60ee32414a2efcb87f4a2940/js/millinextgen.4ad3efe9f.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
  142. &lt;/body&gt;
  143. &lt;/html&gt;

If you are looking to run this offline or wanna host yourself save the java-script file in your device or hosting (open html page in browser -> rigth-click-> view-page source -> right click on the javascript file -> save link as) and replace the path to point.

huangapple
  • 本文由 发表于 2023年5月30日 09:34:41
  • 转载请务必保留本文链接:https://go.coder-hub.com/76361111.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定