All Projects → wangsrGit119 → mini-blog-halo

wangsrGit119 / mini-blog-halo

Licence: MIT License
一款简洁的微信小程序博客(支持海报,评论,留言等等,基于halo的开放api)

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to mini-blog-halo

halo-theme-simple-bootstrap
Halo主题Bootstrap样式·简洁
Stars: ✭ 80 (+77.78%)
Mutual labels:  halo, halo-theme
halo-theme-joe2.0
🌈 一款 Halo 博客主题 Joe2.0
Stars: ✭ 264 (+486.67%)
Mutual labels:  halo, halo-theme
halo-theme-vno
No description or website provided.
Stars: ✭ 21 (-53.33%)
Mutual labels:  halo, halo-theme
halo-theme-casper
No description or website provided.
Stars: ✭ 22 (-51.11%)
Mutual labels:  halo, halo-theme
halo-theme-anatole
No description or website provided.
Stars: ✭ 32 (-28.89%)
Mutual labels:  halo, halo-theme
halo-theme-sagiri
As lovely as sagiri
Stars: ✭ 89 (+97.78%)
Mutual labels:  halo, halo-theme
halo-theme-pinghsu
No description or website provided.
Stars: ✭ 17 (-62.22%)
Mutual labels:  halo, halo-theme
halo-theme-next
No description or website provided.
Stars: ✭ 48 (+6.67%)
Mutual labels:  halo, halo-theme
HaloContentToolScripts
Scripts for content tools (eg, 3dsmax) for various Halo games
Stars: ✭ 23 (-48.89%)
Mutual labels:  halo
Rampancy
A new level editor for the Halo games based on a CSG/Brush workflow, similar to Source/Quake level editing.
Stars: ✭ 23 (-48.89%)
Mutual labels:  halo
HWIDSpoofer
Yes, this is User Mode HWID spoofer that spoofes registry and volume ID and it was written on C#. I fully recoded this thing and now source code looks nice, things are easy to add and delete. Future support included and I have plans to improve this thing. Changes are NOT permanent EXCEPT volume ID spoof.
Stars: ✭ 37 (-17.78%)
Mutual labels:  halo
Halo
💫 Beautiful spinners for terminal, IPython and Jupyter
Stars: ✭ 2,532 (+5526.67%)
Mutual labels:  halo
HaloWarsDocs
Documentation related to modding Halo Wars
Stars: ✭ 17 (-62.22%)
Mutual labels:  halo
Osiris
Reverse engineering suite for Halo 5: Forge
Stars: ✭ 40 (-11.11%)
Mutual labels:  halo
ElDewrito-Menu
Possible replacement for Halo Online's UI heavily based on Halo: Reach
Stars: ✭ 22 (-51.11%)
Mutual labels:  halo
HALO-SCRIPT-PROJECTS
✅ Halo PC|CE - Add-ons for Phasor V2+ and SAPP 🇳🇿
Stars: ✭ 25 (-44.44%)
Mutual labels:  halo
Quickbeam
Halo memory editor
Stars: ✭ 13 (-71.11%)
Mutual labels:  halo
Halo-CE-Mouse-Tool
A tool for Halo Custom Edition(and Halo PC) which allows for the mouse acceleration to be patched, along with the fine tuning of your sensitivity.
Stars: ✭ 32 (-28.89%)
Mutual labels:  halo
WeHalo
WeHalo 简约风 的微信小程序版博客✨
Stars: ✭ 1,335 (+2866.67%)
Mutual labels:  halo
HaloSharp
A C# wrapper for the Halo® 5 Game Data API.
Stars: ✭ 24 (-46.67%)
Mutual labels:  halo

简介须知

此微信小程序是基于开源博客Halo提供的API开发,使用的前提是自己已经部署有自己的Halo博客网站。

  • 文档地址:http://mbhdoc.wangsrbus.cn
  • 微信小程序使用api必须是https,因此需要自己的博客网站配置ssl证书。
  • 下载后直接微信小程序开发工具打开即可。
  • 在app.js配置acess_key以及线上api地址
  • 联系方式(bug或者新功能添加请在仓库issue中提出)

小程序体验

技术源share


Halo开源博客地址

参考文档

本地或者自己部署线上配置

  • 基础配置(重要
    this.globalData = {
      baseUrl: 'https://xxxxxx.cn/api', //api
      api_access_key:"ssssss", //token
      index_bg_image_url:"https://cdn.jsdelivr.net/gh/wangsrGit119/wangsr-image-bucket/img-article/photo-1507738978512-35798112892c.jfif",//首页背景
      title:"",//自定义首页title
    }
  • baseUrl:基础的API(halo博客的)

  • api_access_key :博客后台开启api后设置的token

  • index_bg_image_url:首页bar背景图片

  • title : 首页展示的标题

  • 云函数环境配置(重要,不配置则小程序无法评论)(因为用到了云函数所以需要在开发控制台开通云开发,并在app.js配置云环境ID)

 wx.cloud.init({
        // env 参数说明:
        //   env 参数决定接下来小程序发起的云开发调用(wx.cloud.xxx)会默认请求到哪个云环境的资源
        //   此处请填入环境 ID, 环境 ID 可打开云控制台查看
        //   如不填则使用默认环境(第一个创建的环境)
        env: 'ssssssssssssssssss',
        traceUser: true,
      })
  • 字体配置(app.wxss)

自定义字体显示只有一部分特定的中文字体,所有英文,数字 使用过程中如果有想要单独使用字体的,后续我可以添加到字体文件中,然乎发布新的字体链接版本

@font-face {
  font-family: 'CUSTOM_FONT_T_01';
  src: url('https://cdn.jsdelivr.net/gh/wangsrGit119/wangsr-image-bucket/img-article/2021032601fangzhengziji_xingkaijianti.ttf');
}

@font-face {
  font-family: 'CUSTOM_FONT_T_02';
  src: url('https://cdn.jsdelivr.net/gh/wangsrGit119/wangsr-image-bucket/img-article/2020032601jianghaoyingbikaishu.ttf');
}

  • 海报生成的二维码配置

项目下路径 > images > wechat-q-code.jpg替换成自己的二维码

鸣谢

  • Halo 高颜值轻便开源个人博客
  • lin-ui 简洁美观的小程序UI组件
  • mp-html 富文本和markdown渲染组件
  • vant 众多人喜欢的小程序渲染组件

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].