Toggle navigation
Toggle navigation
This project
Loading...
Sign in
오지민
/
HomePurchaseAgePrediction
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
서연진
2021-06-10 06:04:48 +0000
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e4ed5e93cafabb01645b0fbac3d5608057325545
e4ed5e93
1 parent
4a4c260c
Delete unnecessary comment
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
7 deletions
License
public/css/style2.css
public/js/next_page.js
server.js
License
View file @
e4ed5e9
The MIT License (MIT)
Copyright (c) 2021 김민기
Copyright (c) 2021 서연진
Copyright (c) 2021 오지민
Permission is hereby granted, free of charge, to any person obtaining a copy
...
...
public/css/style2.css
View file @
e4ed5e9
...
...
@@ -30,14 +30,12 @@ h1:hover {
nav
{
padding
:
5px
10px
;
/* background-color: rgba(255, 255, 255, 0.9); */
}
main
{
display
:
flex
;
flex-direction
:
column
;
align-items
:
center
;
/* background-color: rgba(255, 255, 255, 0.7); */
}
main
>
div
{
...
...
@@ -85,8 +83,6 @@ ul > div {
li
{
font-weight
:
500
;
margin
:
10px
0
;
/* border: medium solid var(--point-color);
border-radius: 0.4em; */
color
:
var
(
--point-color
);
padding
:
6px
36px
;
}
...
...
public/js/next_page.js
View file @
e4ed5e9
...
...
@@ -44,8 +44,6 @@ if (navigator.geolocation) {
});
}
//db에서 데이터 받아오면 구현할 부분
// 마커를 표시할 위치와 내용을 가지고 있는 객체 배열입니다
var
positions
=
[]
for
(
var
i
=
0
;
i
<
5
;
i
++
)
{
...
...
server.js
View file @
e4ed5e9
...
...
@@ -8,7 +8,7 @@ var address;
var
json_data
=
[];
const
app
=
express
();
const
domain
=
"2020105619.oss2021.tk"
;
const
domain
=
"2020105619.oss2021.tk"
;
//사용할 때 도메인을 수정해주세요!
const
sslport
=
8080
;
const
dotenv
=
require
(
'dotenv'
).
config
();
//dotenv를 사용하기 위해서 dotenv 라이브러리를 불러온 뒤, config() 메소드를 호출
...
...
Please
register
or
login
to post a comment