개요
코드
<script> // HTML 코드가 완전히 로드된 후 실행되도록 이벤트 리스너를 등록합니다. document.addEventListener("DOMContentLoaded", function() { // div#w20240312d228a02114f14 요소를 선택합니다. var originalDiv = document.querySelector("div#wdgid12345"); // div#w20240312d228a02114f14의 HTML 내용을 가져옵니다. var originalHTML = originalDiv.innerHTML; // depth-1 클래스를 가진 li 요소들을 선택합니다. var depthOneElements = document.querySelectorAll(".viewport-nav.mobile._menu_wrap"); // 각 li 요소에 대해 작업합니다. depthOneElements.forEach(function(element) { // li 요소의 마지막 자식 요소를 선택합니다. var lastChild = element.lastElementChild; // 새로운 HTML 코드를 생성합니다. var newHTML = '<div class="sns-box"><a href="https://www.instagram.com/eondcom/" target="_blank"><i aria-hidden="true" class="fab fa-instagram"> </i></a><a href="https://blog.naver.com" target="_blank"><i aria-hidden="true" class="ii ii-nblog"> </i></a><a href="https://www.youtube.com/" target="_blank"><i aria-hidden="true" class="ii ii-youtube"> </i></a><a href="https://www.tiktok.com/@studioolaa" target="_blank"><i aria-hidden="true" class="fab fa-tiktok"> </i></a><a href="https://www.instagram.com/eond_com/" target="_blank"><i aria-hidden="true" class="ii ii-instagram-rn"> </i></a></div>'; // 가져온 HTML 내용을 newHTML 변수에 담습니다. //var newHTML = originalHTML; // 올라 인스타 / 블로그 / 올라유튜브 / 틱톡 / 대표님인스타 // 새로운 HTML 코드를 마지막 자식 요소 뒤에 추가합니다. lastChild.insertAdjacentHTML('afterend', newHTML); }); }); //console.log('header'); </script> <style> .sns-box{ display:flex;display: flex; align-items: center; gap: 5px; margin: 10px; margin-top:150px; } .sns-box a{ display:flex;display: flex; align-items: center; justify-content:center; width:24px;height:24px; } </style>
정리
제목 | 날짜 | ||
---|---|---|---|
659 | [윈도우] svg viewer - 탐색기에서 바로 svg 아이콘 이미지로 보는 방법 | 888 | 2020/08/10 |
658 | [윈도우] 윈도우 데스크톱 200% 활용하기: 무료 툴 Top 25 | 200 | 2020/07/29 |
657 | [윈도우] 오류 CLOCK_WATCHDOG_TIMEOUT : 발생 원인 및 방법 | 1667 | 2020/07/29 |
656 | [윈도우] Windows 10 사용 중 DISM 도구 사용 시 0x800f081f 오류 | 826 | 2020/07/29 |
655 | [리눅스서버] HTTP 웹 성능 개선하기 | 228 | 2020/07/02 |
654 | [기타] 오픈소스 라이센스에 대하여 | 322 | 2020/05/09 |
653 | [GitHub] warning: LF will be replaced by CRLF in hello1.txt. | 194 | 2020/05/09 |
652 | [윈도우서버] [xampp] rhymix 라이믹스 설치 | 537 | 2020/04/20 |
651 | [윈도우서버] xampp 로컬테스트 계정 생성 | 118 | 2020/04/20 |
650 | [리눅스서버] 리눅스 iptables IP 차단 | 69 | 2020/04/16 |
649 | [웹 제작] css hover underline center to side | 67 | 2020/04/16 |
648 | [윈도우서버] xampp 설치 | 1416 | 2020/04/14 |