기본 콘텐츠로 건너뛰기

2월, 2020의 게시물 표시

추천 가젯

좋아요 버튼 실험용

좋아요버튼 실험 <!--Like Button Start--> <script> var myApp = angular.module('myApp', [])   .controller('Main', ['$scope', function($scope) {     $scope.like = {};     $scope.like.votes = 0;     $scope.doVote = function() {       if ($scope.like.userVotes == 1) {         delete $scope.like.userVotes;         $scope.like.votes--;       } else {         $scope.like.userVotes = 1;         $scope.like.votes++;       }     }   }]); </script> <style> body{   background: linear-gradient(to bottom,  #fff 0%, #eee 100%);   font-size: 4em;   height: 100vh;      .content{     margin: 30% auto;     text-align: center;     a{       color: gray;       text-decoration: none !important; ...

좋아요 버튼 실험용

두번째. second.

테스트용 첫 게시물. Post test.