Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- CentOS7
- CentOS
- Linked List
- 아오
- 반복문
- 깃
- 운영체제
- 인텔리제이
- gitbash
- 로그
- AI
- 부팅디스크
- Intellij
- 잠시만조용히
- MUI
- 자바
- 안드로이드 빌드 안됨
- Vue
- GIT
- 핫모듈
- marquee
- 한글깨짐
- 연결리스트
- rufus
- Linux
- for문
- 백틱
- 안드로이드 빌드 안될때
- 인공지능
- While문
Archives
- Today
- Total
새끼 개발자의 Life is egg
이미지 어딘가를 클릭하면 이벤트가 실행되는 이미지맵 with React 본문
1. https://www.npmjs.com/package/image-map
image-map
Response, dynamic image maps. Latest version: 2.0.1, last published: 3 years ago. Start using image-map in your project by running `npm i image-map`. There is 1 other project in the npm registry using image-map.
www.npmjs.com
image-map 설치
npm install image-map
useEffect(() => {
ImageMapEs('img[useMap]');
}, []);
이미지맵을 깨워주고
Free Online Image Map Generator
Easy free online html image map generator. Select an image, click to create your areas and generate html your output!
www.image-map.net
여기서 이미지맵 코드를 만들면
아래와 같은 코드를 뱉어줌. 적당히 이벤트 줘서 쓰면 된다.
<img src={mapImage} style={{ width: 'auto', height:'100%', objectFit:'contain'}} useMap="#image-map" alt="테스트베드 현장도" />
<map name="image-map">
<area className="clickable" onClick={() => {showDetail(1)}} alt="zone_1" title="zone_1" coords="97,270,43" shape="circle"/>
<area className="clickable" onClick={() => {showDetail(2)}} alt="zone_2" title="zone_2" coords="125,91,44" shape="circle"/>
<area className="clickable" onClick={() => {showDetail(3)}} alt="zone_3" title="zone_3" coords="454,70,41" shape="circle"/>
<area className="clickable" onClick={() => {showDetail(4)}} alt="zone_4" title="zone_4" coords="511,145,35" shape="circle"/>
<area className="clickable" onClick={() => {showDetail(5)}} alt="zone_5" title="zone_5" coords="540,259,45" shape="circle"/>
</map>
'개발's egg' 카테고리의 다른 글
Spring boot + React axios 파일 다운로드 (0) | 2023.03.06 |
---|---|
스프링부트 리액트 json 객체랑 file 같이 넘기기 (0) | 2023.03.03 |
Mybatis config (0) | 2023.02.28 |
spring boot, gradle, react, jpa, postgresql, mybatis, log4j (0) | 2023.02.28 |
작업표시줄 아이콘 깜빡이 비활성화 (0) | 2022.11.18 |
Comments