위토즈 - 개발자프로그램판매공간

정보공유

[API] [javascript] 구글 자동 번역 API

 

홈페이지에 번역이 필요한경우 자동으로 번역을 해주는 api 입니다.

 

굉장히 심플한 소스입니다.

 

 

<style>
.goog-trans{background:#f0f0f0}
.goog-trans-control{float:left;height:40px}
.goog-trans-control a{display:inline-block;padding:0 10px;height:40px;line-height:40px;background:#383838;color:#fff;text-align:center;text-decoration:none}
.goog-trans-info{float:left;margin:0 0 0 10px;height:40px;line-height:40px;color:#686868}
.goog-trans:after{display:block;visibility:hidden;clear:both;content:''}
</style>

<script>
    function googleSectionalElementInit() {
        new google.translate.SectionalElement({
            sectionalNodeClassName: 'goog-trans-section',
            controlNodeClassName: 'goog-trans-control',
            background: '#78E7FF'
        }, 'google_sectional_element');
    }
</script>
<script src="//translate.google.com/translate_a/element.js?cb=googleSectionalElementInit&ug=section&hl=ko"></script>

<div id="google_sectional_element" style="display:none"></div>
<div class="goog-trans-section">
    <div class="goog-trans">
        <div class="goog-trans-control"></div>
        <div class="goog-trans-info">[번역]을 누르시면 번역이 됩니다.</div>
    </div>
    <div id="google_translate_element_area">The page you are looking at is being generated dynamically by CodeIgniter.</div>
</div>

 

 

 

 

추가적으로 페이지가 로딩되면 바로 번역이 이루어지게 하려면 아래와 같이 javascript 를 추가하시면 됩니다.

 

 

<script type="text/javascript">
    google_initialized = false;

    function google_auto_translate()
    {
        if(google_initialized)
        {
            jQuery('a.goog-te-gadget-link')[0].click();
        }
        else if( jQuery('a.goog-te-gadget-link').length )
        {
            console.log('has button');
            google_initialized = true;
            setTimeout(google_auto_translate, 500);
        }
        else{
            console.log('no button');
            setTimeout(google_auto_translate, 100);
        }
    }

    jQuery(document).ready(function(){
        setTimeout(google_auto_translate, 1000);
    });
</script>

 

 

 

 

 

정보공유
Total 437건 3 페이지
번호 제목 글쓴이 날짜 조회
407 네이버 지도 API 키 받기 (WEB 서비스 예제) 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 04-12 44006
406 해외 CMS 솔루션 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 02-10 43911
405 SIR 편리님의 올리신 SNS 로그인 API 설정. 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 06-21 43687
404 크롬 최신버전 에서 KCP 결제가 안될경우 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 06-17 43672
403 다음 지도 사용법, 적용법, 소스코드 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 05-13 43605
402 카카오 API 앱생성 하기 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 08-25 43435
401 구글맵 Google 지도를 제대로 로드할 수 없습니다. 메시지 뜰경우 (방법2) 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 10-18 43405
열람중 [javascript] 구글 자동 번역 API 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 10-20 43400
399 부트스트랩 슬라이더 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 05-01 43400
398 Jquery Plugin gallery - Magnific Popup 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 02-07 43237
397 그누보드에서 map 태그 및 iframe 사용하기. 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 02-22 43122
396 무료 글꼴 (구글 본명조체) 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 04-06 43104
395 GCM 이 FCM 으로 통합되었습니다. 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 09-07 43061
394 눈 내리는 효과 - jQuery Snow Falling plugin 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 12-06 43049
393 capcha 캡챠 스팸방지 코드 오류, 깨짐, 엑박 뜰경우. 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 10-23 42985