본문 바로가기

GAS29

Css_grid_#1 See the Pen Css_grid_1 by ektjtthsrk (@minos79) on CodePen. See the Pen Css_basic by ektjtthsrk (@minos79) on CodePen. grid에 관한 내용은 이곳에서 더 공부하시길 바란다. https://studiomeal.com/archives/533 이번에야말로 CSS Grid를 익혀보자 이 포스트에는 실제 코드가 적용된 부분들이 있으므로, 해당 기능을 잘 지원하는 최신 웹 브라우저로 보시는게 좋습니다. (대충 인터넷 익스플로러로만 안보면 된다는 이야기) 이 튜토리얼은 “ studiomeal.com 2023. 6. 19.
Split And Reveal Text Effect | CSS Text Animation 최근 공부중인 Css 스승인 [Coding Artist]를 복기하여 본인의 Css공부를 기록하여 보려한다. https://www.youtube.com/watch?v=6o08ebSeZtM See the Pen Split And Reveal Text Effect | CSS Text Animation by ektjtthsrk (@minos79) on CodePen. Html 코드이다. 더보기 1stminokingdom.tistory.com HajaGo HajaGo Css 코드이다. 더보기 *{ padding:0; margin:0; box-sizing:border-box; font-family:"Poppins", sans-serif; } body { background-color: #0a0a0a; } .cont.. 2023. 6. 18.
[GAS] cheerio를 이용한 Daum뉴스 크롤링 더보기 function getContent_(url) { return UrlFetchApp.fetch(url).getContentText() } function scraper() { const content = getContent_("https://news.daum.net/"), // 다음 뉴스 검색 URL $ = Cheerio.load(content), // 크롤링을 위한 Cheerio 선언 daum_news = $('.list_newsissue > li').toArray(); // 다음 뉴스 메인기사 태그를 daum_news에 배열에 담아라 let sht = SpreadsheetApp.getActiveSheet(), // 현재시트를 sht로 선언 titles = []; // 최종 배열들을 담을 tit.. 2023. 4. 19.
[GAS] sheets데이터를 html 문서를 작성해보자 https://www.youtube.com/watch?v=K6lRjCrdqis&t=1003s 오늘은 sheets에 있는 데이터를 html 문서화 하는 코드를 작성해보려고 한다. 나중에 웹앱을 시트에 있는 데이터를 통해 구성하려고 하면 시트에 있는 내용을 템플릿화해서 html 코드에 입혀주는 작업을 해야 하는데 오늘은 그 작업의 초기 단계라고 보면 된다. sales.html을 열어보면 태그 사이사이에 이런 것들이 있을 것이다. 이것은 gs에서 템플릿화하여서 키워드에 치환되게 된다. 이 사이에 들어가는 [치환]에 앱스스크립트의 내용이 템플릿트.evauate() 명령어로 html에 들어가게 된다. https://yeoncoding.tistory.com/46 [javascript] join() 함수 - 배열의 .. 2023. 4. 19.