• Angular BootStrap 登录页面


    #安装angular
    npm install -g @angular/cli
    #新建项目
    ng new familyxiaologinui
    # 打开设置
    cd familyxiaologinui
    ng serve --open --port 4100
    #引入Bootstrap
    npm install bootstrap@4.0.0-beta.2 popper.js jquery --save
    #安装  https://www.npmjs.com/package/angular-font-awesome
    npm install --save font-awesome angular-font-awesome



    //文件 angular.json
    {"projects": {"architect": {
            "build": {
              "builder": "@angular-devkit/build-angular:browser",
              "options": {"styles": [
                  "src/styles.less",
                  "./node_modules/font-awesome/css/font-awesome.css",
                  "./node_modules/bootstrap/dist/css/bootstrap.min.css"
                ],
                "scripts": [
                  "./node_modules/jquery/dist/jquery.slim.min.js",
                  "./node_modules/popper.js/dist/umd/popper.min.js",
                  "./node_modules/bootstrap/dist/js/bootstrap.min.js"
                ]
              }
            }
          }
        }
      }
    }
    #生成登录Form
    ng g c components/common/loginform
    #进入https://www.bootcss.com/,选择BootStrap4中文网->"实例(https://v4.bootcss.com/docs/examples/)"->Sign-In(https://v4.bootcss.com/docs/examples/sign-in/)->右键“查看网页源代码”
    #将form中的内容得到到->loginform.component.less(对应组件的样式中)

    注意:引用了第三方样式,要重启一下(我使用的是vscode)

    到此简单登录页常写好了,手机效果还不错

    PS E:...> ng serve --open --port 4110
    An unhandled exception occurred: Script file ./node_modules/popper.js/dist/umd/popper.min.js does not exist.
    See "C:UsersADMINI~1AppDataLocalTemp2
    g-MVucsEangular-errors.log" for further details.
    
    npm install popper.js
    An unhandled exception occurred: Script file ./node_modules/jquery/dist/jquery.slim.min.js does not exist.
    See "C:UsersADMINI~1AppDataLocalTemp2
    g-FGZkaFangular-errors.log" for further details.
    PS E:...> npm install jquery

  • 相关阅读:
    BZOJ1787 [Ahoi2008]Meet 紧急集合[结论题]
    poj3728 The merchant[倍增]
    poj2750 Potted Flower[线段树]
    poj2482 Stars in Your Window[扫描线]
    poj2182 Lost Cows[BIT二分]
    UVA12096 The SetStack Computer
    第05组(65) 需求分析报告
    团队介绍与选题报告
    数据采集技术第三次作业
    结对编程作业
  • 原文地址:https://www.cnblogs.com/xiaoruilin/p/12952353.html
Copyright © 2020-2023  润新知