• Stars
    star
    310
  • Rank 134,926 (Top 3 %)
  • Language
    CSS
  • License
    GNU Lesser Genera...
  • Created about 11 years ago
  • Updated almost 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

javascript UI library

[주의!] 이 ν”„λ‘œμ νŠΈλŠ” 더 이상 μΆ”κ°€κ°œλ°œ/κ°œμ„ μž‘μ—…μ„ μ§„ν–‰ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€. μ•žμœΌλ‘œλŠ” AX5UIλ₯Ό μ΄μš©ν•΄μ£Όμ„Έμš”.

This Project will not proceed further development. Please use AX5UI in the future.

AX5UI

ν˜„μž¬κΉŒμ§€ 배포된 버전에 λŒ€ν•œ μ΄μš©μ—λŠ” λ¬Έμ œκ°€ μ—†κ³ , 각쒅 링크 CDN등은 ν˜„μž¬μ™€ λ™μΌν•˜κ²Œ μœ μ§€ λ©λ‹ˆλ‹€.
단, μœ μ§€λ³΄μˆ˜/ν•˜μžλ³΄μˆ˜ 계약이 된 경우λ₯Ό μœ„ν•œ 버그 ν”½μŠ€λŠ” μ§„ν–‰λ©λ‹ˆλ‹€.


AXISJ

###Full-Stack Open-source Javascript UI Framework

AXISJ means "Axis of Javascript" and also represents "Application eXeprience:AX" as well.

AXISJ λŠ” β€œμžλ°”μŠ€ν¬λ¦½νŠΈμ˜ μΆ•(Axis of Javascript)β€λΌλŠ” 뜻과 λ”λΆˆμ–΄ μ• ν”Œλ¦¬μΌ€μ΄μ…˜ κ°œλ°œκ²½ν—˜(Application eXperience: AX)을 κ΅¬ν˜„ν•œλ‹€λŠ” μ˜λ―Έλ„ λ‹΄κ³  μžˆμŠ΅λ‹ˆλ‹€.

It can be used easily and lightly, by excluding the load which a developer does not intend or which is heavier than application. In terms of the development method, the collision issue between components has been minimised with the use of Class-based coding rules which manage each UI tool in Class.

link

Related Projects

Download

By Bower.io

// bower install
$ bower install axisj

Direct Download [releases] (https://github.com/axisj-com/axisj/releases)

Install

CDN

<link rel="stylesheet" type="text/css" href="https://cdn.rawgit.com/axisj/axisj/master/ui/arongi/AXJ.min.css">
<script type="text/javascript" src="https://cdn.jsdelivr.net/jquery/1.12.3/jquery.min.js"></script>
<script type="text/javascript" src="https://cdn.rawgit.com/axisj/axisj/master/dist/AXJ.min.js"></script>

CDN Theme

<link rel="stylesheet" type="text/css" href="https://cdn.rawgit.com/axisj/axisj/master/ui/arongi/AXJ.min.css">
<link rel="stylesheet" type="text/css" href="https://cdn.rawgit.com/axisj/axisj/master/ui/bulldog/AXJ.min.css">
<link rel="stylesheet" type="text/css" href="https://cdn.rawgit.com/axisj/axisj/master/ui/cocker/AXJ.min.css">
<link rel="stylesheet" type="text/css" href="https://cdn.rawgit.com/axisj/axisj/master/ui/flybasket/AXJ.min.css">
<link rel="stylesheet" type="text/css" href="https://cdn.rawgit.com/axisj/axisj/master/ui/kakao/AXJ.min.css">

Installing AXISJ is simple and easy. Copy and paste the downloaded file of AXISJ in an appropriate location of your project. (In this sample, the file was put in the project root / 'axisj' folder.) Type in codes to load CSS and JS files in HTML codes of the pages where you want to use AXISJ. Then, if needed, load CSS and JS files of some components of UI. This sample shows the codes to enable AXGrid component.

<!DOCTYPE html>
<html lang="ko">
<head>
    <!-- κ³΅ν†΅μš”μ†Œ -->
    <link rel="stylesheet" type="text/css" href="https://cdn.rawgit.com/axisj/axisj/master/ui/arongi/AXJ.min.css">
    <script type="text/javascript" src="https://cdn.jsdelivr.net/jquery/1.12.3/jquery.min.js"></script>
    <script type="text/javascript" src="https://cdn.rawgit.com/axisj/axisj/master/dist/AXJ.min.js"></script>
</head>

Define the id of HTML element where you want to put the UI component. The id will be used in UI configuration for later. 'id' is a unique element and there should not be two id elements with the same id name in one HTML document.

</head>
<body>
    <h1>AXGrid RWD</h1>
    <div id="AXGridTarget"></div>
</body>
</html>

Define UI configuration and data. Each component of UI has different configuration values.

</body>
</html>
<script type="text/javascript">
var myGrid = new AXGrid(); // instance
var fnObj = {
    pageStart: function(){

        myGrid.setConfig({
            targetID : "AXGridTarget",
            theme : "AXGrid",
            autoChangeGridView: { // autoChangeGridView by browser width
                mobile:[0,600], grid:[600]
            },
            colGroup : [
                {key:"no", label:"No.", width:"40", align:"center", formatter:"money"},
                {key:"title", label:"Title", width:"200"},
                {key:"writer", label:"Writer", width:"100", align:"center"},
                {key:"date", label:"Date.", width:"100", align:"center"},
                {key:"desc", label:"Etc.", width:"*"}
            ],
            body : {
                onclick: function(){
                    toast.push(Object.toJSON({index:this.index, item:this.item}));
                }
            },
            page:{
                paging:false
            }
        });

        var list = [
            {
                no:1, title:"AXGrid 첫번째 쀄 μž…λ‹ˆλ‹€.AXGrid 첫번째 쀄 μž…λ‹ˆλ‹€.", writer:"μž₯기영", img:"img/1.jpg", desc:"λ§Žμ€ 글을 λ‹΄κ³  μžˆλŠ” λ‚΄μš© μž…λ‹ˆλ‹€. μžμ—°μŠ€λŸ½κ²Œ 쀄이 λ„˜μ–΄κ°€κ³  ν‘œν˜„λ˜λŠ” 것이 관건 μž…λ‹ˆλ‹€.", category:"μ•‘μ‹œμŠ€μ œμ΄", date:"2014-04-05"
            },
            {
                no:2, title:"AXGrid λ‘λ²ˆμ§Έ 쀄 μž…λ‹ˆλ‹€.AXGrid 첫번째 쀄 μž…λ‹ˆλ‹€.", writer:"μž₯기영", img:"img/2.jpg", desc:"λ§Žμ€ 글을 λ‹΄κ³  μžˆλŠ” λ‚΄μš© μž…λ‹ˆλ‹€.", category:"μ•‘μ‹œμŠ€μ œμ΄", date:"2014-04-07"
            },
            {
                no:3, title:"AXGrid μ„Έλ²ˆμ§Έ 쀄 μž…λ‹ˆλ‹€.AXGrid 첫번째 쀄 μž…λ‹ˆλ‹€.", writer:"μž₯기영", img:"img/3.jpg", desc:"λ§Žμ€ 글을 λ‹΄κ³  μžˆλŠ” λ‚΄μš© μž…λ‹ˆλ‹€. μžμ—°μŠ€λŸ½κ²Œ...", category:"μ•‘μ‹œμŠ€μ œμ΄", date:"2014-04-09"
            }
        ];

        //setList
        myGrid.setList(list);
        /* ajax way
        myGrid.setList({
            ajaxUrl:"...",
            ajaxPars:"",
            onLoad:function(){},
            onError:function(){}
        });
        */
    }
};
jQuery(document).ready(fnObj.pageStart.delay(0.1));
</script>

Q&A

https://github.com/axisj-com/axisj/issues

UI Preview

axisjui

Bitdeli Badge

More Repositories

1

react-fed

πŸ“– React Front-End Development Study
TypeScript
34
star
2

axu

Application eXperience Universal
CSS
32
star
3

ax5

JS Touch UI Library
HTML
16
star
4

AXBinder

Simple two way binding javascript, jQuery plugin
JavaScript
10
star
5

ax6ui

ES6 Javascript UI Component
JavaScript
7
star
6

datagrid

TypeScript
6
star
7

axui

:octocat: DataGrid, DataSheet for React
TypeScript
5
star
8

react-calculator

DEMO :
JavaScript
4
star
9

axasp

javascript asp
ASP
4
star
10

gulp-marko-ax5

Render marko template. for gulp
JavaScript
3
star
11

2018study-es

JavaScript
3
star
12

oss-report

HTML
3
star
13

jqmin

Tiny jQuery for ax6ui
JavaScript
3
star
14

grunt-ax-marko

marko grunt task
JavaScript
3
star
15

styling-reactjs-demo

styling-reactjs-demo
CSS
3
star
16

ax6ui-sample

ES6 Javascript UI Component - demo website
CSS
3
star
17

grunt-resource-publish

JavaScript
2
star
18

jquery-history-a

jquery-history renew
JavaScript
2
star
19

svg2css

svg file convert to css class
JavaScript
2
star
20

Codemirror-kr

λ¬Έμ„œ ν•œκΈ€ν™” ν•˜κΈ°
JavaScript
2
star
21

semantic-ui-scss

Semantic UI, Extract only 'scss' files
CSS
2
star
22

axconsole-icon

TypeScript
1
star
23

front-end-team-blog

TypeScript
1
star
24

react-calc

JavaScript
1
star
25

jquery-direct

jQuery extend funtions
JavaScript
1
star
26

axboot.js

JavaScript
1
star
27

study-es6

JavaScript
1
star
28

study-webpack

JavaScript
1
star
29

sample

HTML
1
star
30

grunt-mustache-site-generator

grunt mustache site generator
JavaScript
1
star
31

react-animation-study

Study for react animation in website
TypeScript
1
star
32

ax6ui-sample-react

ES6 Javascript UI Component - demo website(react)
JavaScript
1
star
33

AXNavigation

mobile navigation for cordova & mobile web
JavaScript
1
star
34

webfont-nanum

nanum webfont repository
1
star