Add a hover effect(cursor)
This commit is contained in:
parent
dc79ad3220
commit
1a3488945a
2 changed files with 4 additions and 4 deletions
|
|
@ -69,7 +69,7 @@
|
||||||
<b>Methods of connection</b></br>
|
<b>Methods of connection</b></br>
|
||||||
Individuals collecting fragments each have their own folder. When they put a story, picture, audio, or video file inside a folder, each fragment is assigned a serial number, and gets accumulated in the fragments of hospitality website.The fragments connect us.
|
Individuals collecting fragments each have their own folder. When they put a story, picture, audio, or video file inside a folder, each fragment is assigned a serial number, and gets accumulated in the fragments of hospitality website.The fragments connect us.
|
||||||
We hope that we can choose the “nature and attitude” of the medium that mediates our connection.
|
We hope that we can choose the “nature and attitude” of the medium that mediates our connection.
|
||||||
<img onclick="showKorean()" src="src/img/language_kor.svg" style="width:20px; vertical-align:text-top">
|
<img onclick="showKorean()" src="src/img/language_kor.svg" style="width:20px; vertical-align:text-top; cursor:pointer;">
|
||||||
</br></br>
|
</br></br>
|
||||||
*We borrowed the method of exchange and sharing from distribusi, a project that proposes the form of publication that documents and updates communal project.
|
*We borrowed the method of exchange and sharing from distribusi, a project that proposes the form of publication that documents and updates communal project.
|
||||||
<a href="https://test.roelof.info/nooo2-three-takes-on-taking-care.html" target="_blank">디스트리붓시</a>
|
<a href="https://test.roelof.info/nooo2-three-takes-on-taking-care.html" target="_blank">디스트리붓시</a>
|
||||||
|
|
@ -119,7 +119,7 @@
|
||||||
<b>연결의 방향</b></br>
|
<b>연결의 방향</b></br>
|
||||||
환대의 조각들을 모으고 있는 개인은 자기만의 폴더를 가지고 있다. 각자의 이야기, 그림, 소리, 영상 파일을 하나씩 폴더에 넣으면, 각각의 조각은 일련의 번호를 부여받고, 환대의 조각들 페이지에 차곡히 쌓인다. 조각들이 우리를 연결한다.
|
환대의 조각들을 모으고 있는 개인은 자기만의 폴더를 가지고 있다. 각자의 이야기, 그림, 소리, 영상 파일을 하나씩 폴더에 넣으면, 각각의 조각은 일련의 번호를 부여받고, 환대의 조각들 페이지에 차곡히 쌓인다. 조각들이 우리를 연결한다.
|
||||||
우리의 연결을 매개하는 매체의 ‘성질과 태도'를 우리가 선택할 수 있으면 좋겠다.
|
우리의 연결을 매개하는 매체의 ‘성질과 태도'를 우리가 선택할 수 있으면 좋겠다.
|
||||||
<img onclick="showEnglish()" src="src/img/language_en.svg" style="width:20px; vertical-align:text-top">
|
<img onclick="showEnglish()" src="src/img/language_en.svg" style="width:20px; vertical-align:text-top; cursor:pointer;">
|
||||||
|
|
||||||
</br></br>
|
</br></br>
|
||||||
*공동 프로젝트를 문서화하고 업데이트하는 새로운 방식의 출판을 제안하는 프로젝트, 디스트리붓시의 공유 방식을 빌려왔다.
|
*공동 프로젝트를 문서화하고 업데이트하는 새로운 방식의 출판을 제안하는 프로젝트, 디스트리붓시의 공유 방식을 빌려왔다.
|
||||||
|
|
|
||||||
|
|
@ -69,7 +69,7 @@ let findElementByProperty = (arr, key, value) => {
|
||||||
|
|
||||||
let lang_button = document.createElement("img");
|
let lang_button = document.createElement("img");
|
||||||
lang_button.setAttribute("src", `/src/img/language_en.svg`)
|
lang_button.setAttribute("src", `/src/img/language_en.svg`)
|
||||||
lang_button.setAttribute("style", "width:20px; vertical-align:text-top")
|
lang_button.setAttribute("style", "width:20px; vertical-align:text-top; cursor:pointer;")
|
||||||
lang_button.onclick = showEnglish
|
lang_button.onclick = showEnglish
|
||||||
document.getElementById("introduction").appendChild(lang_button)
|
document.getElementById("introduction").appendChild(lang_button)
|
||||||
|
|
||||||
|
|
@ -105,7 +105,7 @@ let findElementByProperty = (arr, key, value) => {
|
||||||
|
|
||||||
let lang_button = document.createElement("img");
|
let lang_button = document.createElement("img");
|
||||||
lang_button.setAttribute("src", `/src/img/language_kor.svg`)
|
lang_button.setAttribute("src", `/src/img/language_kor.svg`)
|
||||||
lang_button.setAttribute("style", "width:20px; vertical-align:text-top")
|
lang_button.setAttribute("style", "width:20px; vertical-align:text-top; cursor:pointer;")
|
||||||
lang_button.onclick = showKorean
|
lang_button.onclick = showKorean
|
||||||
document.getElementById("introduction").appendChild(lang_button)
|
document.getElementById("introduction").appendChild(lang_button)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue