Coder Social home page Coder Social logo

blog's Introduction

Murphy Leung 's Personal Blog

Go to my blog:http://1025623017.github.io/blog

Email to me

Web Front Tree Mindmap 01:https://raw.githubusercontent.com/1025623017/blog/master/Front_End_teee_01.png

Web Front Tree Mindmap 02:https://raw.githubusercontent.com/1025623017/blog/master/Front_End_teee_02.jpg

Edit this page

模具知识分享(Plastic Engineers,Mould Designers,Tooling Design Engineers)

  • Tools

    • PTC Creo Parametric 3.0 M100
    • ZBrush 2021
    • Rhino 6
    • Autodesk_3ds_Max_2020
    • Adobe Photoshop CS5
    • Adobe Illustrator CC 2018
    • Adobe Acrobat 9 Pro (For reading 3D PDF)
    • 3D-Tool CAD-Viewer
  • Videos

  • 中英对照表

    • rib 筋
    • solid 实体化
    • cut 掏胶 肉抜き
    • thickness 料厚
    • draft 拔模
    • c c角
    • r 圆角
  • Standards

    • Thickness
      • 成品 2mm/1/5mm
      • 拼装 1.5mm/1.2mm
    • 装配
      • 圆柱 + 圆柱
      • 圆柱 + 六角柱
      • D型圆柱
      • 矩形
      • 球形
      • 防反装
      • 卡位
        • 0.2mm ~ 0.5mm(卡位应做成容易加胶的形状)
    • 加强筋
      • Thickness * 75% ~ 80%
    • 止口
      • 起点/终点 0.5mm间隙
      • 接合面 间隙0.2mm,拔模3°
      • 间隙 0.1mm
      • 反止口,做成加强筋一样
      • 超声止口:干涉角高0.3mm夹角45度,宽0.8mm。中轴离边缘1.1mm,拔模3°,间隙0.2mm
    • 螺丝柱
      • 7mm/4.2mm/1.6mm
      • 8mm/5mm/2mm
    • 间隙
      • GK 0.05mm/ABS 0.1mm/PVC 0mm
      • 活动间隙 0.15mm/0.2mm
    • 拔模
      • 前模 1°(0° ~ 1°),如涉及喷油请拔模7° ~ 10°
      • 后模 0.5°
      • 分模线跳转处 3°~5°
      • 碰穿 3°,碰穿面积留空一圈1mm宽
    • C角(Chamfering)
      • 0.3mm/0.5mm/1mm
    • R角(Radius)
      • 0.2mm/0.3mm/0.5mm/1.5mm/2mm
      • 0 ~ 3周岁
        • 大外形的尖锐处 R1.5mm
        • 其他外形 R0.5mm
        • 螺丝柱 0.5mm/0.8mm/1mm

我的产品(My Products)

购买我的GK产品

一般工程工时:30 ~ 60个工作日(每日8~11小时)

预计时薪:每小时77~100元人民币

Go to my 3D Museum

Buy them in https://app.gumroad.com/products

To Be Continued...

前端知识分享(Front End)

vue图标Vux图标Vux开发分享

  • 安装(多次安装失败,请换台电脑试试)

      Vux项目已在2017年1月11日更新至2.0
      [https://github.com/airyland/vux](https://github.com/airyland/vux)
  • 配置

    • 详情请看项目Demo
  • 组件式开发

    日常添加路由,写.vue文件就可以了
    
    首先在main.js新增路由,然后在新页面中复制改写[demo](https://vux.li/demos/#/component/demo)中的代码即可
  • main.js文件中封装全局ajax

      // 全局ajax
      export function uAjax(init,_this) {
          var type = init.type
          var url = init.url
          var params = init.params
          var successFn = init.success
          var failFn = init.fail
          var showLoading = init.showLoading
          var closeLoading = init.closeLoading
    
          // 默认自带域名
          var urlDefault = init.urlDefault
    
          // 默认显示loading
          if (showLoading != false) {
              _this.showLoading = true
          }
    
          // 默认GET方法
          type = (type==null || type=="" || typeof(type)=="undefined")? "get" : type
    
          // 设置延时才会得到Vue.http.options.root
          setTimeout(() => {
              // 默认自带域名
              if (urlDefault != false) {
                  url = Vue.http.options.root+url
              }
              // 支持get/post/put方法
              if (type=='get') {
                  Vue.http.get(url,{params})
                  .then(response => {
                      if (response.data.code==0) {
                          successFn.call(this,response.data)
                      }else if(response.data.code==1){
                          if (failFn) {
                              failFn.call(this,response.data)
                          }
                      }else if(response.data.code==2){
                          _this.txtError = response.data.message
                          _this.showError = true
                          setTimeout(() => {
                              router.go('/login')
                          }, 1000)
                      }
                      console.warn(response)
                      // 默认关闭loading
                      if (closeLoading != false) {
                          _this.showLoading = false
                      }
                  },response => {
                      console.warn('请求错误')
                      console.warn(response)
                      _this.showLoading = false
                  })
                  .catch(console.log)
              }else if(type=='post'){
                  //
              }
          }, 500)
      }
  • yourfile.vue中调用封装的ajax

      //<script>直属部分
      import { uAjax } from 'src/main'
    
      //methods部分其中一个函数
      var _this = this
      uAjax({
        url: '/api/yourAPI/urlname',
        success: function(rsp) {
          _this.status = rsp.data.status
        }
        //省略参数...
      },this)
  • 项目示例

    • Vux商家入驻

我的前端项目

公司 & 任职经历

  • 深圳市友福同享信息科技有限公司(Wiki) 2016/06/12 ~ 2017/07/31
  • 江门市MXM(Model Cross Me)模型工具店 2017/08/01 ~ 2027/08/01
  • 模具设计X公司 2017/08/01 ~ 2099/00/00

科目

  • 语言(国语、英语、日语)
  • 数学(编程)
  • 历史地理政治(摄影、旅游)
  • 物理(模具设计)
  • 生物化学(日常运动、伤病急救、中西医)
  • 艺术(美术、音乐、笑话)

推荐网站


合作伙伴:

万代模型 | 万代南梦宫** | 小号手模型 | 核诚治造 | CCSTOYS | InnovationPoint创新点 | 炼技人 | 魔封真模型工作室 | 柴耀Studio

我的头像 Copyright © 2016-2024 Murphy Leung Powered By Github

blog's People

Contributors

1025623017 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

blog's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.