-
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 #11 from aps1027/develop
Added 3D model loader and fixed future risk In Version 1
- Loading branch information
Showing
7 changed files
with
68 additions
and
14 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.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,18 @@ | ||
<template> | ||
<nav class="flex items-center justify-between flex-wrap bg-teal-600 p-4 absolute w-screen"> | ||
<nav | ||
class="flex items-center justify-between flex-wrap bg-teal-600 p-4 absolute w-screen" | ||
> | ||
<div class="flex items-center flex-shrink-0 text-white mr-6"> | ||
<span class="font-semibold md:text-2xl xl:text-2xl lg:text-2xl tracking-wide sm:text-xl">Room Interior Design Decoration</span> | ||
<span | ||
class="font-semibold md:text-2xl xl:text-2xl lg:text-2xl tracking-wide sm:text-xl" | ||
>3D Room Interior Design Decoration</span | ||
> | ||
</div> | ||
</nav> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'Nav' | ||
} | ||
name: "Nav", | ||
}; | ||
</script> |
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,30 @@ | ||
<template> | ||
<div class="w-screen h-screen absolute z-50 bg-gray-500 opacity-50"> | ||
<div | ||
class="loader" | ||
> | ||
{{ progress }}% | ||
</div> | ||
</div> | ||
</template> | ||
<script> | ||
export default { | ||
name: "ProgressLoading", | ||
props: ["progress"], | ||
}; | ||
</script> | ||
<style scoped lang="postcss"> | ||
.loader { | ||
top: 50%; | ||
right: 50%; | ||
transform: translateX(50%); | ||
position: absolute; | ||
width: 100px; | ||
background: white; | ||
height: 100px; | ||
text-align: center; | ||
border-radius: 50px; | ||
padding: 30px 0px; | ||
font-size: 26px; | ||
} | ||
</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