Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

新增对UIView任意圆角设置的支持,必须配合设置border-radius才有效 #121

Open
wants to merge 9 commits into
base: master
Choose a base branch
from

Commits on Mar 4, 2015

  1. 新增对UIView任意圆角设置的支持,必须配合设置border-radius才有效

    使用方式如下:
    #test
            {
                border-radius:10px;
                corners:TR;
            }
    
    注:
    这里corners支持的值为:
    TR --- UIRectCornerTopRight
    TL ---- UIRectCornerTopLeft
    BR --- UIRectCornerBottomRight
    BL --- UIRectCornerBottomLeft
    
    可以任意组合,中间减号连接,组合方式如下
    TR-TL-BR
    cdoky committed Mar 4, 2015
    Configuration menu
    Copy the full SHA
    350a5fc View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2015

  1. Configuration menu
    Copy the full SHA
    ced45c6 View commit details
    Browse the repository at this point in the history
  2. 代码优化

    cdoky committed Mar 5, 2015
    Configuration menu
    Copy the full SHA
    83f3e85 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2015

  1. no message

    cdoky committed Mar 6, 2015
    Configuration menu
    Copy the full SHA
    1519110 View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2015

  1. corners支持缩写和全称两种

    BL BottomLeft
    BR BottomRight
    TL TopLeft
    TR TopRight
    cdoky committed Mar 9, 2015
    Configuration menu
    Copy the full SHA
    119613e View commit details
    Browse the repository at this point in the history
  2. no message

    cdoky committed Mar 9, 2015
    Configuration menu
    Copy the full SHA
    1f69805 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2015

  1. 支持任意多个server url

    cdoky committed Mar 11, 2015
    Configuration menu
    Copy the full SHA
    69165b3 View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2015

  1. "server":

        {
            "development":"http://10.10.1.3",
            "production":"http://10.10.1.4",
            "developmentcn":"http://10.10.1.5",
            "file":
            {
                "develope":"http://10.10.1.1",
                "production":"http://10.10.1.2"
            }
        },
    
    对多种服务器url的支持
    比如,正常的interface服务器,文件服务器
    cdoky committed Mar 27, 2015
    Configuration menu
    Copy the full SHA
    657dc3d View commit details
    Browse the repository at this point in the history
  2. 格式化生成的代码

    cdoky committed Mar 27, 2015
    Configuration menu
    Copy the full SHA
    512c484 View commit details
    Browse the repository at this point in the history