Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
3
3DWeb
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
徐来柯
3DWeb
Commits
c090db1a
Commit
c090db1a
authored
Jan 06, 2022
by
徐来柯
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update 页面架子搭建
parent
8f6103cf
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
91 additions
and
0 deletions
+91
-0
settings.json
.vscode/settings.json
+4
-0
index.css
css/index.css
+55
-0
index.html
index.html
+32
-0
index.js
js/index.js
+0
-0
No files found.
.vscode/settings.json
0 → 100644
View file @
c090db1a
{
"liveServer.settings.port"
:
5501
}
\ No newline at end of file
css/index.css
0 → 100644
View file @
c090db1a
html
{
height
:
100%
;
box-sizing
:
border-box
;
}
body
{
height
:
100%
;
margin
:
0
;
padding
:
0
;
}
.container
{
width
:
100%
;
height
:
100%
;
box-sizing
:
border-box
;
color
:
#fff
;
background-color
:
#121212
;
}
.header
{
width
:
100%
;
height
:
100px
;
box-sizing
:
border-box
;
}
.main
{
width
:
100%
;
height
:
calc
(
100%
-
100px
);
background
:
#0C1C38
;
box-sizing
:
border-box
;
position
:
relative
;
}
.view
{
width
:
300px
;
height
:
700px
;
position
:
absolute
;
top
:
50px
;
background
:
rgba
(
11
,
28
,
56
,
0.7
);
display
:
flex
;
flex-direction
:
column
;
}
.view
div
{
flex
:
1
;
border
:
1px
solid
red
;
}
.view-left
{
left
:
40px
}
.view-right
{
right
:
40px
;
}
\ No newline at end of file
index.html
0 → 100644
View file @
c090db1a
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
Document
</title>
<link
rel=
"stylesheet"
href=
"./css/index.css"
>
</head>
<body>
<div
class=
"container"
>
<div
class=
"header"
>
<div>
header 部分
</div>
</div>
<div
class=
"main"
>
<div>
3D模型部分
</div>
<div
class=
"view view-left"
>
<div>
1
</div>
<div>
2
</div>
<div>
3
</div>
</div>
<div
class=
"view view-right"
>
<div>
1
</div>
<div>
2
</div>
<div>
3
</div>
</div>
</div>
</div>
</body>
<script
src=
"./js/index.js"
></script>
</html>
\ No newline at end of file
js/index.js
0 → 100644
View file @
c090db1a
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment