-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from Dev-KNU/develop
Develop
- Loading branch information
Showing
32 changed files
with
174 additions
and
32 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
<script setup lang="ts"> | ||
import Python from '@/assets/image/python_logo.png' | ||
import Figma from '@/assets/image/figma_logo.png' | ||
import Github from '@/assets/image/github_logo.png' | ||
import Npm from '@/assets/image/npm_logo.png' | ||
import Swift from '@/assets/image/swift_logo.png' | ||
import Android from '@/assets/image/android_logo.png' | ||
import Jabascript from '@/assets/image/javascript_logo.png' | ||
import InteliJ from '@/assets/image/inteliJ_logo.png' | ||
import Unity from '@/assets/image/unity_logo.png' | ||
import Discord from '@/assets/image/discord_logo.png' | ||
import Gpt from '@/assets/image/chatgpt_logo.png' | ||
import Terminal from '@/assets/image/terminal_logo.png' | ||
import Notepad from '@/assets/image/notepad_logo.png' | ||
import Xcode from '@/assets/image/xcode_logo.png' | ||
import Apple from '@/assets/image/apple_logo.png' | ||
import BackgroundIcon from '@/components/BackgroundIcon.vue' | ||
</script> | ||
|
||
<template> | ||
<div class="backgrounds"> | ||
<div class='background-main'> | ||
<BackgroundIcon :icon='Python' left='221.67px' top='20.85px'/> | ||
<BackgroundIcon :icon='Figma' right='223.64px' top='6px'/> | ||
<BackgroundIcon :icon='Github' left='-62.75px' top='135.25px'/> | ||
<BackgroundIcon :icon='Npm' right='-62.16px' top='142.35px'/> | ||
<BackgroundIcon :icon='Swift' left='-40px' top='496px'/> | ||
<BackgroundIcon :icon='Android' right='-98px' top='397px'/> | ||
<BackgroundIcon :icon='Jabascript' right='154.77px' top='599.44px'/> | ||
|
||
<BackgroundIcon :icon='InteliJ' left='222.42px' top='332.42px'/> | ||
<BackgroundIcon :icon='Unity' right='133.04px' top='278.62px'/> | ||
</div> | ||
<div class='other'> | ||
<BackgroundIcon :icon='Discord' left='217px' top='868px'/> | ||
<BackgroundIcon :icon='Gpt' left='35px' top='1201px'/> | ||
<BackgroundIcon :icon='Terminal' right='-59.03px' top='1151px'/> | ||
<BackgroundIcon :icon='Notepad' right='151.47px' top='1680.36px'/> | ||
<BackgroundIcon :icon='Xcode' left='211px' top='2092px'/> | ||
<BackgroundIcon :icon='Apple' right='203.16px' top='2200px'/> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<style scoped lang="scss"> | ||
.backgrounds { | ||
width: 100%; | ||
display: flex; | ||
flex-flow: column; | ||
position: absolute; | ||
.background-main { | ||
opacity: 0.5; | ||
} | ||
.logo { | ||
display: inline-flex; | ||
padding: 10px; | ||
flex-direction: column; | ||
align-items: flex-start; | ||
gap: 10px; | ||
filter: blur(6px); | ||
position: absolute; | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<script setup lang='ts'> | ||
defineProps<{ | ||
icon: string, | ||
left: string | null, | ||
right: string | null, | ||
top: string | null | ||
}>() | ||
</script> | ||
|
||
<template> | ||
<div class='logo'> | ||
<img :src='icon' alt='icon' > | ||
</div> | ||
</template> | ||
|
||
<style scoped lang='scss'> | ||
.logo { | ||
left: v-bind(left); | ||
right: v-bind(right); | ||
top: v-bind(top); | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<script setup lang='ts'> | ||
import LogoStrock from '@/assets/image/logo_strok.svg' | ||
</script> | ||
|
||
<template> | ||
<div class='logo-container'> | ||
<div class='effect pos'> | ||
<img :src='LogoStrock' alt='logo-stroke'> | ||
</div> | ||
<div class='logo pos overlay'></div> | ||
<div class='logo overlay multiply'></div> | ||
|
||
</div> | ||
</template> | ||
|
||
<style scoped lang='scss'> | ||
.logo-container { | ||
transform: rotate(2.347deg); | ||
} | ||
.pos { | ||
position: absolute; | ||
} | ||
.multiply { | ||
mix-blend-mode: multiply; | ||
} | ||
.effect { | ||
width: 100%; | ||
filter: drop-shadow(0.563px 0.563px 240px rgba(255, 255, 255, 0.32)) drop-shadow(18px 27px 128px rgba(136, 196, 240, 0.16)) drop-shadow(-24px -24px 128px rgba(255, 94, 94, 0.16)); | ||
} | ||
.logo { | ||
width: 345.68px; | ||
height: 454.206px; | ||
background: url('@/assets/image/effect.png'), url('@/assets/image/effect.png'),url("@/assets/image/logo2_hologram.png"); | ||
background-blend-mode: overlay; | ||
mask: url("@/assets/image/logo2_hologram.png"); | ||
filter: drop-shadow(0.563px 0.563px 240px rgba(255, 255, 255, 0.32)) drop-shadow(18px 27px 128px rgba(136, 196, 240, 0.16)) drop-shadow(-24px -24px 128px rgba(255, 94, 94, 0.16)); | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters