Title: RactiveJS
Author: FuzzGuard
Published: <strong>2015년 6월 24일</strong>
Last modified: 2017년 3월 15일

---

플러그인 검색

이 플러그인은 **최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다**. 워드프레스의
좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 
있을 수 있습니다.

![](https://ps.w.org/ractivejs/assets/icon-128x128.png?rev=1632635)

# RactiveJS

 작성자: [FuzzGuard](https://profiles.wordpress.org/fuzzguard/)

[다운로드](https://downloads.wordpress.org/plugin/ractivejs.1.3.zip)

 * [세부사항](https://ko.wordpress.org/plugins/ractivejs/#description)
 * [평가](https://ko.wordpress.org/plugins/ractivejs/#reviews)
 *  [설치](https://ko.wordpress.org/plugins/ractivejs/#installation)
 * [개발](https://ko.wordpress.org/plugins/ractivejs/#developers)

 [지원](https://wordpress.org/support/plugin/ractivejs/)

## 설명

This plugin registers the RactiveJS Framework library as part of WordPress. This
means that Ractive scripts can be included in your plugins by just enqueuing the
scripts. Please see FAQ for usage for your plugin.

NOTE: This does not add any ability to the wordpress front-end or back-end. The 
scripts are disabled by default and must be included in your plugin by enqueuing
the scripts as you would for any other scripting engine. So to reiterate this plugin
does not add any extra functionality on its own. It is designed to be used as a 
dependancy for other plugins.

#### Live, reactive templating

Ractive.js is a template-driven UI library, but unlike other tools that generate
inert HTML, it transforms your templates into blueprints for apps that are interactive
by default.

#### Powerful and extensible

Two-way binding, animations, SVG support and more are provided out-of-the-box – 
but you can add whatever functionality you need by downloading and creating plugins.

#### Optimised for your sanity

Some tools force you to learn a new vocabulary and structure your app in a particular
way. Ractive works for you, not the other way around – and it plays well with other
libraries.

RactiveJS: http://www.ractivejs.org/

## 설치

 1. Upload the `plugin` folder to the `/wp-content/plugins/` directory
 2. WordPress의 ‘플러그인’ 메뉴에서 플러그인을 활성화하세요.

## FAQ

  Installation Instructions

 1. Upload the `plugin` folder to the `/wp-content/plugins/` directory
 2. WordPress의 ‘플러그인’ 메뉴에서 플러그인을 활성화하세요.

  How to use RactiveJS in my plugin?

This plugin is just a helper plugin to register the RactiveJS framework scripts 
into wordpress and allow them to be enqueued and utilized by other plugins. Below
is an explaination of the script handlers you have to enqueue to activate RactiveJS
and to activate any of the ractive-plugins used in conjunction RactiveJS.

How to Enqueue the RactiveJS Framework scripts:

    ```
        wp_enqueue_script('ractive-js');                RactiveJS Framework
        wp_enqueue_script('ractive-hover');             Ractive.js hover event plugin
        wp_enqueue_script('ractive-keys');              Ractive.js keys event plugin
        wp_enqueue_script('ractive-mousewheel');        Ractive.js mousewheel event plugin
        wp_enqueue_script('ractive-resize');            Ractive.events.resize
        wp_enqueue_script('ractive-tap');               Ractive.js tap event plugin
        wp_enqueue_script('ractive-touch-hammer');      ractive-touch
        wp_enqueue_script('ractive-touch');             ractive-touch
        wp_enqueue_script('ractive-typing');            ractive-events-typing
        wp_enqueue_script('ractive-viewport');          ractive-event-viewport
    wp_enqueue_script('ractive-fade');      Ractive.js fade transition plugin
    wp_enqueue_script('ractive-fly');       Ractive.js fly transition plugin
    wp_enqueue_script('ractive-scale');     Ractive.js scale transition plugin
    wp_enqueue_script('ractive-slide');     Ractive.js slide transition plugin
    wp_enqueue_script('ractive-slide-horizontal');  Horizontal slide transition plugin for Ractive
    wp_enqueue_script('ractive-typewriter');    Ractive.js typewriter transition plugin
    ```

  Script Dependancies

Each of the scripts have dependancies. They are all queued as dependancies in the
plugin. So if you forget to load the dependancy it will be automatically loaded 
for you.

    ```
    ractive-js          No Depenancies
    ractive-hover           ractive-js
    ractive-keys            ractive-js
    ractive-mousewheel      ractive-js
    ractive-resize          ractive-js
    ractive-tap         ractive-js
    ractive-touch-hammer        ractive-js
    ractive-touch           ractive-js, ractive-touch-hammer
    ractive-typing          ractive-js
    ractive-viewport        ractive-js
        ractive-fade            ractive-js
        ractive-fly         ractive-js
        ractive-scale           ractive-js
        ractive-slide           ractive-js
        ractive-slide-horizontal    ractive-js
        ractive-typewriter      ractive-js
    ```

## 후기

이 플러그인에 대한 평가가 없습니다.

## 기여자 & 개발자

“RactiveJS”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

 *   [ FuzzGuard ](https://profiles.wordpress.org/fuzzguard/)

[자국어로 “RactiveJS”(을)를 번역하세요.](https://translate.wordpress.org/projects/wp-plugins/ractivejs)

### 개발에 관심이 있으십니까?

[코드 탐색하기](https://plugins.trac.wordpress.org/browser/ractivejs/)는, [SVN 저장소](https://plugins.svn.wordpress.org/ractivejs/)
를 확인하시거나, [개발 기록](https://plugins.trac.wordpress.org/log/ractivejs/)을
[RSS](https://plugins.trac.wordpress.org/log/ractivejs/?limit=100&mode=stop_on_copy&format=rss)
로 구독하세요.

## 변경이력

#### 1.3

 * Remove getPluginURL function and replaced all references to it with plugins_url()
   WP Core function
 * Updated ‘ractive.min.js’ to v0.8.1
 * Updated ‘ractive-taps.min.js’ to v0.3.1
 * Updated ‘hammer.min.js’ to v2.0.8

#### 1.2.3

 * Tested with version 4.7 of WordPress

#### 1.2.2

 * Tested with version 4.6 of WordPress

#### 1.2.1

 * Fixed error with ractive-tap plugin

#### 1.2

 * hammer.js updated to 2.0.6
 * ractive-tap updated to 0.3.0
 * ractive-events-hover updated to 0.2.0
 * ractive-fade update to 0.3.1
 * ractive-slide updated to 0.4.0
 * ractive-slide-horizontal updated to 1.0.3

#### 1.1

 * Added getPluginURL() function to return Globally the plugin URL. References plugin_url().’/
   ractive-js’
 * Added transitions to RactiveJS Plugin
 * Added transitions scripts to new function register_transitions_scripts()
 * Moved events scripts to the register_events_scripts() function
 * Minified all transitions scripts
 * Minified all events scripts
 * Minified the core RactiveJS file: ractive.js

#### 1.0

 * Gold release

## 기초

 *  버전 **1.3**
 *  최근 업데이트: **9년 전**
 *  활성화된 설치 **10+**
 *  워드프레스 버전 ** 3.8 또는 그 이상 **
 *  다음까지 시험됨: **4.8.28**
 *  언어
 * [English (US)](https://wordpress.org/plugins/ractivejs/)
 * 태그:
 * [framework](https://ko.wordpress.org/plugins/tags/framework/)[javascript](https://ko.wordpress.org/plugins/tags/javascript/)
   [library](https://ko.wordpress.org/plugins/tags/library/)
 *  [고급 보기](https://ko.wordpress.org/plugins/ractivejs/advanced/)

## 평점

아직 제출된 리뷰가 없습니다.

[Your review](https://wordpress.org/support/plugin/ractivejs/reviews/#new-post)

[모든  리뷰 보기](https://wordpress.org/support/plugin/ractivejs/reviews/)

## 기여자

 *   [ FuzzGuard ](https://profiles.wordpress.org/fuzzguard/)

## 지원

할 말 있으신가요? 도움이 필요하신가요?

 [지원 포럼 보기](https://wordpress.org/support/plugin/ractivejs/)

## 기부

이 플러그인이 발전하도록 도우시겠습니까?

 [ 이 플러그인에 기부하기 ](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=G8SPGAVH8RTBU)