전체 글 (484) 썸네일형 리스트형 Tstory - Smooth rendering When moving to another page or first loading a page, the page seems to pop up suddenly not smoothly link shown in the picture below. So I will show you how to render pages with minimum code that can be used on almost every website. In this example, I will implement the feature on the tstory(Korean blog platform). Completed Code If you want to know the code first here they are. /* Type Selector R.. 티스토리 자연스러운 페이지 로딩 페이지를 이동하면서 요소들이 화면에 표시될 때 요소나 파일이 로딩되는 속도 차이 등의 이유로 아래와 같이 부자연스럽게 표시됩니다. 간단한 작업을 통해 화면을 자연스럽게 로딩하는 효과를 구현해 보겠습니다. 해당 코드는 티스토리의 모든 스킨에 적용가능할 뿐 아니라 거의 모든 웹 사이트에 적용가능합니다. 완성코드 /* Type Selector Reset */ body { /* other styles */ animation: smoothRendering 1s ease forwards; } @keyframes smoothRendering { from {opacity: 0;} to {opacity: 1;} } 구현하기 공통 스타일 추가 관리자 페이지에 보면 좌측에 '스킨편집'이라는 기능이 있는데요. 해당 메뉴를 선.. [Google Tags] - How to Check Implemented Tags To get the data from a site to Google products. We need to a way to connect them somehow. Google global tag or GTM tag serves the purpose. But how can we make sure that it is actually implemented or other tags like conversions work fine? Let's see how There are several ways to check the tags. 1. Tag Assistant This is an extension provided Google to check tags on the site. To use this, click the .. [GTM] - GA4 Set up (configuration) It is possible to add GA4 tag using Google Tag Manager (GTM). Let's see how to set up GA4 tag in GTM. HTML 삽입 미리보기할 수 없는 소스 How to create .NET web-API Setting up development tools When working with .NET, we need tools to create a web application. We can download them at the link below. .NET | Free. Cross-platform. Open Source. (microsoft.com) .NET | Free. Cross-platform. Open Source. .NET is a developer platform with tools and libraries for building any type of app, including web, mobile, desktop, games, IoT, cloud, and microservices. dotnet.m.. Adding Relation to DB Entity framework makes adding a relationship between tables easy. Let's see how it is done. Creating an Application First, let's create a .NET application. How to create a .NET web-API application (tistory.com) How to create .NET web-API Setting up development tools When working with .NET, we need tools to create a web application. We can download them in the link below.다. .NET | Free. Cross-pla.. Auto Migration and Data Seeding When you download a .NET application for the first time and try to run the project, you might face a problem running the project if you don't seed the data first. Entity Framework provides an easy way to create a database when setting up the project after downloading. Creating an Application First, let's create a .NET application. How to create a .NET web-API application (tistory.com) How to cre.. Server Architecture - Distributing Projects Server Structure An interface is a middleman between the browser and the server. It sends a request to a server and handles the response from it. The interface has a dependency on the infrastructure which also has a dependency on the application core project that defines things that are specific to the project such as business logic hence has no dependency on any other project. Implementation 1... 이전 1 ··· 33 34 35 36 37 38 39 ··· 61 다음