Merge branch 'main' of ssh://18.167.251.121:10002/aidlab/Code-Create
This commit is contained in:
@@ -6,6 +6,7 @@ li,
|
|||||||
h1,
|
h1,
|
||||||
h2,
|
h2,
|
||||||
h3,
|
h3,
|
||||||
|
h4,
|
||||||
p {
|
p {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
@@ -13,14 +14,18 @@ p {
|
|||||||
* {
|
* {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
html,
|
h1,
|
||||||
body,
|
h2,
|
||||||
#app {
|
h3,
|
||||||
width: 100%;
|
h4,
|
||||||
height: 100%;
|
h5,
|
||||||
overflow: hidden;
|
h6,
|
||||||
font-family: 'KaiseiOpti-Medium';
|
.products-title {
|
||||||
color: #232323;
|
font-family: Poppins, sans-serif;
|
||||||
|
font-weight: 600;
|
||||||
|
letter-spacing: 2px;
|
||||||
|
color: #222222;
|
||||||
|
text-transform: capitalize;
|
||||||
}
|
}
|
||||||
@keyframes loading {
|
@keyframes loading {
|
||||||
0% {
|
0% {
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ li,
|
|||||||
h1,
|
h1,
|
||||||
h2,
|
h2,
|
||||||
h3,
|
h3,
|
||||||
|
h4,
|
||||||
p {
|
p {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
@@ -14,15 +15,12 @@ p {
|
|||||||
* {
|
* {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
h1, h2, h3, h4, h5, h6, .products-title{
|
||||||
html,
|
font-family: Poppins, sans-serif;
|
||||||
body,
|
font-weight: 600;
|
||||||
#app {
|
letter-spacing: 2px;
|
||||||
width: 100%;
|
color: #222222;
|
||||||
height: 100%;
|
text-transform: capitalize;
|
||||||
overflow: hidden;
|
|
||||||
font-family: 'KaiseiOpti-Medium';
|
|
||||||
color: #232323;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes loading {
|
@keyframes loading {
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
import { ViteSSG } from 'vite-ssg'
|
import { ViteSSG } from 'vite-ssg'
|
||||||
import App from './App.vue'
|
import App from './App.vue'
|
||||||
import { routes } from './routes'
|
import { routes } from './routes'
|
||||||
import './style.css'
|
// import './style.css'
|
||||||
|
import '@/assets/css/style.less'
|
||||||
import directives from './directives/index'
|
import directives from './directives/index'
|
||||||
|
|
||||||
export const createApp = ViteSSG(App, {
|
export const createApp = ViteSSG(App, {
|
||||||
|
|||||||
67
src/pages/about-us/ecosystem.vue
Normal file
67
src/pages/about-us/ecosystem.vue
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import { ref, onMounted, onUnmounted, reactive, toRefs } from "vue";
|
||||||
|
import { gsap, TweenMax, TweenLite } from 'gsap'
|
||||||
|
import { ScrollTrigger } from 'gsap/ScrollTrigger'
|
||||||
|
//const props = defineProps({
|
||||||
|
//})
|
||||||
|
//const emit = defineEmits([
|
||||||
|
//])
|
||||||
|
let data = reactive({
|
||||||
|
})
|
||||||
|
onMounted(()=>{
|
||||||
|
})
|
||||||
|
onUnmounted(()=>{
|
||||||
|
})
|
||||||
|
defineExpose({})
|
||||||
|
const {} = toRefs(data);
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<section class="ecosystem">
|
||||||
|
<div class="content">
|
||||||
|
<img src="https://code-create.com.hk/wp-content/uploads/2022/11/home_ai_logo.png" alt="">
|
||||||
|
<h2>REVITALISE THE FASHION ECOSYSTEM</h2>
|
||||||
|
<h4>through Artificial Intelligence (AI)</h4>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<section class="ecosystem-video">
|
||||||
|
<div class="content">
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</template>
|
||||||
|
<style lang="less" scoped>
|
||||||
|
.ecosystem{
|
||||||
|
width: 100%;
|
||||||
|
background-color: #fff;
|
||||||
|
> .content{
|
||||||
|
margin: 0 auto;
|
||||||
|
max-width: 1200px;
|
||||||
|
padding: 100px 0px 100px 0px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
> img{
|
||||||
|
width: 300px;
|
||||||
|
height: 300px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
> h2{
|
||||||
|
margin-bottom: 20px;
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
> h4{
|
||||||
|
color: #333333;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.ecosystem-video{
|
||||||
|
width: 100%;
|
||||||
|
background-color: #463a37;
|
||||||
|
> .content{
|
||||||
|
max-width: 1200px;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 100px 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref, onMounted, onUnmounted, reactive, toRefs } from "vue";
|
import { ref, onMounted, onUnmounted, reactive, toRefs } from "vue";
|
||||||
import Video from './video.vue'
|
import Ecosystem from './ecosystem.vue'
|
||||||
import Product from './product.vue'
|
import Title from './title.vue'
|
||||||
//const props = defineProps({
|
//const props = defineProps({
|
||||||
//})
|
//})
|
||||||
//const emit = defineEmits([
|
//const emit = defineEmits([
|
||||||
@@ -16,15 +16,27 @@ defineExpose({})
|
|||||||
const {} = toRefs(data);
|
const {} = toRefs(data);
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<div class="home">
|
<div class="about-us">
|
||||||
<Video />
|
<div class="bg">
|
||||||
<Product />
|
<img src="https://code-create.com.hk/wp-content/uploads/2022/12/about_banner-1.jpg" alt="">
|
||||||
|
</div>
|
||||||
|
<Title />
|
||||||
|
<Ecosystem />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
.home{
|
.about-us{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
> .bg{
|
||||||
|
width: 100%;
|
||||||
|
position: fixed;
|
||||||
|
z-index: -1;
|
||||||
|
top: 0;
|
||||||
|
> img{
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
@@ -16,15 +16,30 @@ defineExpose({})
|
|||||||
const {} = toRefs(data);
|
const {} = toRefs(data);
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<section class="product">
|
<section class="title-section">
|
||||||
<br v-for="item in 50" />
|
<div class="content">
|
||||||
<div class="aa" >1231312</div>
|
<div class="text">
|
||||||
<div class="aa" v-tween-animation>1231312</div>
|
<h1>ABOUT US</h1>
|
||||||
<br v-for="item in 10" />
|
</div>
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
.product{
|
.title-section{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
> .content{
|
||||||
|
max-width: 1400;
|
||||||
|
> .text{
|
||||||
|
padding: 200px 300px;
|
||||||
|
> h1{
|
||||||
|
text-align: center;
|
||||||
|
font-size: 64px;
|
||||||
|
font-weight: 600;
|
||||||
|
line-height: 64px;
|
||||||
|
letter-spacing: 2px;
|
||||||
|
color: #FFFFFF;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
<script setup lang="ts">
|
|
||||||
import { ref, onMounted, onUnmounted, reactive, toRefs } from "vue";
|
|
||||||
//const props = defineProps({
|
|
||||||
//})
|
|
||||||
//const emit = defineEmits([
|
|
||||||
//])
|
|
||||||
let data = reactive({
|
|
||||||
})
|
|
||||||
onMounted(()=>{
|
|
||||||
})
|
|
||||||
onUnmounted(()=>{
|
|
||||||
})
|
|
||||||
defineExpose({})
|
|
||||||
const {} = toRefs(data);
|
|
||||||
</script>
|
|
||||||
<template>
|
|
||||||
<section class="video">
|
|
||||||
<div class="title">
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
</template>
|
|
||||||
<style lang="less" scoped>
|
|
||||||
.video{
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
import type { RouteRecordRaw } from 'vue-router'
|
import type { RouteRecordRaw } from 'vue-router'
|
||||||
import AboutView from './pages/AboutView.vue'
|
import AboutView from './pages/about-us/index.vue'
|
||||||
import ContactView from './pages/ContactView.vue'
|
import ContactView from './pages/ContactView.vue'
|
||||||
import HomeView from './pages/home/index.vue'
|
import HomeView from './pages/HomeView.vue'
|
||||||
import ProductsView from './pages/ProductsView.vue'
|
import ProductsView from './pages/ProductsView.vue'
|
||||||
|
|
||||||
export const routes: RouteRecordRaw[] = [
|
export const routes: RouteRecordRaw[] = [
|
||||||
|
|||||||
Reference in New Issue
Block a user