Navbar.vue 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  1. <script setup>
  2. import { ref, reactive,onMounted } from "vue";
  3. import { useRouter } from "vue-router";
  4. import { useMainStore } from "@/stores/store";
  5. import { useI18n } from "vue-i18n";
  6. import Login from "@/views/Login.vue";
  7. const router = useRouter();
  8. const store = useMainStore();
  9. const { t, locale } = useI18n();
  10. let menuShow = ref(false);
  11. let collegeMenuShow = ref(false);
  12. let otherMenuShow = ref(false);
  13. function toggleMenu() {
  14. collegeMenuShow.value = false;
  15. menuShow.value = !menuShow.value;
  16. }
  17. function handleClose() {
  18. store.loginDialog = false;
  19. }
  20. function handleMouseEvents(name, event) {
  21. const screenWidth = window.innerWidth;
  22. if (screenWidth >= 1280) {
  23. if (name === "college") {
  24. collegeMenuShow.value = event;
  25. } else {
  26. otherMenuShow.value = event;
  27. }
  28. } else {
  29. return;
  30. }
  31. }
  32. function handleClick(url) {
  33. menuShow.value = false;
  34. collegeMenuShow.value = false;
  35. otherMenuShow.value = false;
  36. router.push(url);
  37. }
  38. const collegeList = reactive([
  39. {
  40. title: "未來工藝",
  41. url: "/college-group/future",
  42. },
  43. {
  44. title: "技藝工藝",
  45. url: "/college-group/craft",
  46. },
  47. {
  48. title: "跨域增能",
  49. url: "/college-group/cross",
  50. },
  51. {
  52. title: "線上工藝",
  53. url: "/college-group/online",
  54. },
  55. {
  56. title: "希望工程",
  57. url: "/college-group/craft-for-all",
  58. },
  59. {
  60. title: "生活工藝",
  61. url: "/college-group/life",
  62. },
  63. // {
  64. // title: "修護工藝",
  65. // url: "/college-group/repair",
  66. // },
  67. // {
  68. // title: "世代工藝",
  69. // url: "/college-group/generation",
  70. // },
  71. // {
  72. // title: "青年工藝",
  73. // url: "/college-group/teenager",
  74. // },
  75. ]);
  76. const otherList = reactive([
  77. // {
  78. // title: "我要開課",
  79. // url: "/setup-courses",
  80. // },
  81. // {
  82. // title: "網站架構",
  83. // url: "/",
  84. // },
  85. ]);
  86. onMounted(()=>{
  87. console.log('onMounted');
  88. localStorage.setItem("lang", "zh");
  89. })
  90. function changeLang() {
  91. let lang = localStorage.getItem("lang");
  92. console.log('lang',lang);
  93. if (lang === "zh") {
  94. locale.value = "en";
  95. localStorage.setItem("lang", "en");
  96. } else if (lang === "en") {
  97. locale.value = "zh";
  98. localStorage.setItem("lang", "zh");
  99. }
  100. }
  101. </script>
  102. <template>
  103. <div class="d-flex justify-space-between align-center navbar">
  104. <router-link :to="'/'">
  105. <img src="@/assets/img/logo.png" alt="" />
  106. </router-link>
  107. <ul class="menu align-center" :class="{ slider: menuShow }">
  108. <li>
  109. <router-link :to="'/crafts'">工藝學</router-link>
  110. </li>
  111. <li class="position-relative">
  112. <a
  113. href="javascript:;"
  114. @mouseover="collegeMenuShow = true"
  115. @mouseleave="collegeMenuShow = false"
  116. class="d-none d-lg-block"
  117. >工藝學群</a
  118. >
  119. <a
  120. href="javascript:;"
  121. @click="collegeMenuShow = !collegeMenuShow"
  122. class="d-block d-lg-none"
  123. >工藝學群
  124. <v-icon
  125. icon="mdi-chevron-down"
  126. class="toggle-icon"
  127. :class="{ slider: collegeMenuShow }"
  128. ></v-icon
  129. ></a>
  130. <div
  131. class="college-slider"
  132. :class="{ slider: collegeMenuShow }"
  133. @mouseover="handleMouseEvents('college', true)"
  134. @mouseleave="handleMouseEvents('college', false)"
  135. >
  136. <ul>
  137. <li v-for="(item, index) in collegeList" :key="index">
  138. <a href="javascript:;" @click="handleClick(item.url)">{{
  139. item.title
  140. }}</a>
  141. <!-- <router-link :to="item.url">{{ item.title }}</router-link> -->
  142. </li>
  143. </ul>
  144. </div>
  145. </li>
  146. <li>
  147. <router-link :to="'/news'">重要訊息</router-link>
  148. </li>
  149. <li>
  150. <router-link :to="'/course-list'">探索課程</router-link>
  151. </li>
  152. <!-- <li>
  153. <router-link :to="'/article'">知識文章</router-link>
  154. </li> -->
  155. <li>
  156. <v-dialog
  157. v-model="store.loginDialog"
  158. max-width="450"
  159. v-if="!store.loginState"
  160. >
  161. <template v-slot:activator="{ props }">
  162. <a href="javascript:;" v-bind="props">會員登入</a>
  163. </template>
  164. <Login @close="handleClose" />
  165. </v-dialog>
  166. <router-link :to="'/user/profile'" v-else>會員專區</router-link>
  167. </li>
  168. <li>
  169. <router-link :to="'/setup-courses'">我要開課</router-link>
  170. </li>
  171. <li>
  172. <a href="javascript:;" @click="changeLang()">中/EN</a>
  173. </li>
  174. <li class="d-none d-lg-block">
  175. <v-icon icon="mdi-magnify"></v-icon>
  176. </li>
  177. <li class="d-none d-lg-block position-relative">
  178. <a
  179. href="javascript:;"
  180. @mouseover="otherMenuShow = true"
  181. @mouseleave="otherMenuShow = false"
  182. class="d-none d-lg-block"
  183. >
  184. <v-icon icon="mdi-menu"></v-icon
  185. ></a>
  186. <div
  187. class="college-slider"
  188. :class="{ slider: otherMenuShow }"
  189. @mouseover="handleMouseEvents('other', true)"
  190. @mouseleave="handleMouseEvents('other', false)"
  191. >
  192. <ul>
  193. <li v-for="(item, index) in otherList" :key="index">
  194. <a href="javascript:;" @click="handleClick(item.url)">{{
  195. item.title
  196. }}</a>
  197. </li>
  198. </ul>
  199. </div>
  200. </li>
  201. <li
  202. v-for="(item, index) in otherList"
  203. :key="index"
  204. class="d-block d-lg-none"
  205. >
  206. <a href="javascript:;" @click="handleClick(item.url)">{{
  207. item.title
  208. }}</a>
  209. <!-- <router-link :to="item.url">{{ item.title }}</router-link> -->
  210. </li>
  211. </ul>
  212. <a href="javascript:;" class="icon" @click="toggleMenu()">
  213. <v-icon icon="mdi-menu" class="mx-2"></v-icon>
  214. </a>
  215. </div>
  216. </template>
  217. <style lang="scss" scoped>
  218. .navbar {
  219. width: 90%;
  220. max-width: 1300px;
  221. margin: 0 auto 40px;
  222. padding: 0 35px 0 15px;
  223. border: 1px solid;
  224. position: relative;
  225. z-index: 1000;
  226. background: transparent;
  227. top: 40px;
  228. left: 0;
  229. right: 0;
  230. @media (max-width: 1280px) {
  231. padding: 10px 20px 10px 10px;
  232. }
  233. img {
  234. width: 100%;
  235. max-width: 370px;
  236. margin-top: 5px;
  237. @media (max-width: 600px) {
  238. max-width: 300px;
  239. }
  240. }
  241. .menu {
  242. display: flex;
  243. align-items: center;
  244. list-style: none;
  245. @media (max-width: 1280px) {
  246. position: absolute;
  247. top: 81px;
  248. left: 0;
  249. right: 0;
  250. z-index: 100;
  251. overflow: hidden;
  252. flex-direction: column;
  253. max-height: 0;
  254. transition: max-height 0.3s ease-in-out;
  255. box-shadow: 1px 1px 15px #c8c8c8;
  256. }
  257. @media (max-width: 600px) {
  258. top: 103%;
  259. }
  260. &.slider {
  261. max-height: 700px;
  262. overflow: initial;
  263. // border: 1px solid;
  264. // border-top: none;
  265. }
  266. & > li {
  267. margin-left: 27px;
  268. font-weight: 400;
  269. @media (max-width: 1280px) {
  270. width: 100%;
  271. margin-left: 0;
  272. background: #fff;
  273. border-bottom: 1px solid #f0f0f0;
  274. font-weight: 500;
  275. text-align: center;
  276. }
  277. a {
  278. width: 100%;
  279. display: block;
  280. padding: 40px 0;
  281. color: #000;
  282. text-decoration: none;
  283. transition: all 0.3s;
  284. &:hover {
  285. opacity: 0.8;
  286. }
  287. @media (max-width: 1280px) {
  288. padding: 20px 0;
  289. }
  290. }
  291. }
  292. .college-slider {
  293. display: none;
  294. position: absolute;
  295. top: 80px;
  296. left: -30px;
  297. width: 130px;
  298. background: #fff;
  299. text-align: center;
  300. box-shadow: 1px 1px 15px #c8c8c8;
  301. transition: all 0.3s;
  302. @media (max-width: 1280px) {
  303. position: initial;
  304. width: auto;
  305. max-height: 0;
  306. box-shadow: none;
  307. transition: none;
  308. overflow: hidden;
  309. }
  310. // @media (max-width: 1280px) {
  311. // top: 30px;
  312. // left: 50vw;
  313. // }
  314. // @media (max-width: 600px) {
  315. // left: 58vw;
  316. // width: 100px;
  317. // }
  318. &.slider {
  319. display: block;
  320. @media (max-width: 1280px) {
  321. max-height: 100%;
  322. }
  323. }
  324. ul {
  325. @media (max-width: 1280px) {
  326. padding-bottom: 15px;
  327. }
  328. li {
  329. transition: all 0.3s;
  330. &:last-child {
  331. border-bottom: none;
  332. }
  333. &:hover {
  334. background-color: #eee;
  335. @media (max-width: 1280px) {
  336. opacity: 0.8;
  337. background-color: #fff;
  338. }
  339. }
  340. a {
  341. display: block;
  342. width: 100%;
  343. padding: 15px 10px;
  344. @media (max-width: 1280px) {
  345. padding: 15px 10px 15px 40px;
  346. }
  347. }
  348. }
  349. }
  350. }
  351. }
  352. .toggle-icon {
  353. margin-left: 5px;
  354. position: absolute;
  355. top: 17px;
  356. transition: all 0.3s;
  357. &.slider {
  358. transform: rotate(180deg);
  359. }
  360. }
  361. .icon {
  362. display: none;
  363. transition: all 0.3s;
  364. @media (max-width: 1280px) {
  365. display: block;
  366. }
  367. &:hover {
  368. opacity: 0.8;
  369. }
  370. .v-icon {
  371. font-size: 2rem;
  372. }
  373. }
  374. &::before {
  375. content: "";
  376. position: absolute;
  377. top: 6px;
  378. left: 6px;
  379. width: 99%;
  380. height: 88%;
  381. background-color: rgba(255, 255, 255, 0.5);
  382. z-index: -1;
  383. @media (max-width: 960px) {
  384. top: 7px;
  385. left: 1.3vw;
  386. width: 97%;
  387. height: 83%;
  388. }
  389. }
  390. }
  391. </style>