跳转到帖子
在手机APP中查看

一个更好的浏览方法。了解更多

OKCCN - XenForo & IPS Plugin Marketplace

主屏幕上的全屏APP,带有推送通知、徽章等。

在iOS和iPadOS上安装此APP
  1. 在Safari中轻敲分享图标
  2. 滚动菜单并轻敲添加到主屏幕
  3. 轻敲右上角的添加按钮。
在安卓上安装此APP
  1. 轻敲浏览器右上角的三个点菜单 (⋮) 。
  2. 轻敲添加到主屏幕安装APP
  3. 轻敲安装进行确认。
  • 选择语言

所有动态

此动态墙会自动更新

  1. 一小时前
  2. Cavalry发布主题在 教程
    CSS Borders CSS Borders The CSS border properties allow you to specify the style, width, and color of an element's border. I have borders on all sides. I have a red, bottom border. I have rounded borders. I have a blue, left border. CSS Border Style The border-style property specifies what kind of border to display. The following values are allowed: dotted - Defines a dotted border dashed - Defines a dashed border solid - Defines a solid border double - Defines a double border groove - Defines a 3D grooved border. The effect depends on the border-color value ridge - Defines a 3D ridged border. The effect depends on the border-color value inset - Defines a 3D inset border. The effect depends on the border-color value outset - Defines a 3D outset border. The effect depends on the border-color value none - Defines no border hidden - Defines a hidden border The border-style property can have from one to four values (for the top border, right border, bottom border, and the left border). Example Demonstration of the different border styles: p.dotted {border-style: dotted;} p.dashed {border-style: dashed;} p.solid {border-style: solid;} p.double {border-style: double;} p.groove {border-style: groove;} p.ridge {border-style: ridge;} p.inset {border-style: inset;} p.outset {border-style: outset;} p.none {border-style: none;} p.hidden {border-style: hidden;} p.mix {border-style: dotted dashed solid double;} Result: A dotted border. A dashed border. A solid border. A double border. A groove border. The effect depends on the border-color value. A ridge border. The effect depends on the border-color value. An inset border. The effect depends on the border-color value. An outset border. The effect depends on the border-color value. No border. A hidden border. A mixed border. Try it Yourself » Note: None of the OTHER CSS border properties (which you will learn more about in the next chapters) will have ANY effect unless the border-style property is set! ★ +1 Sign in to track progress
  3. Cavalry发布主题在 教程
    CSS Backgrounds CSS Backgrounds The CSS background properties are used to add background effects for elements. In these chapters, you will learn about the following CSS background properties: background-color background-image background-repeat background-attachment background-position background (shorthand property) CSS background-color The background-color property specifies the background color of an element. Example The background color of a page is set like this: body { background-color: lightblue; } Try it Yourself » With CSS, a color is most often specified by: a valid color name - like "red" a HEX value - like "#ff0000" an RGB value - like "rgb(255,0,0)" Look at CSS Color Values for a complete list of possible color values. Other Elements You can set the background color for any HTML elements: Example Here, the <h1>, <p>, and <div> elements will have different background colors: h1 { background-color: green; } div { background-color: lightblue; } p { background-color: yellow; } Try it Yourself » Opacity / Transparency The opacity property specifies the opacity/transparency of an element. It can take a value from 0.0 - 1.0. The lower value, the more transparent: opacity 1 opacity 0.6 opacity 0.3 opacity 0.1 Example div { background-color: green; opacity: 0.3; } Try it Yourself » Note: When using the opacity property to add transparency to the background of an element, all of its child elements inherit the same transparency. This can make the text inside a fully transparent element hard to read. Transparency using RGBA If you do not want to apply opacity to child elements, like in our example above, use RGBA color values. The following example sets the opacity for the background color and not the text: 100% opacity 60% opacity 30% opacity 10% opacity You learned from our CSS Colors Chapter, that you can use RGB as a color value. In addition to RGB, you can use an RGB color value with an alpha channel (RGBA) - which specifies the opacity for a color. An RGBA color value is specified with: rgba(red, green, blue, alpha). The alpha parameter is a number between 0.0 (fully transparent) and 1.0 (fully opaque). Tip: You will learn more about RGBA Colors in our CSS Colors Chapter. Example div { background: rgba(0, 128, 0, 0.3) /* Green background with 30% opacity */ } Try it Yourself » The CSS Background Color Property Property Description background-color Sets the background color of an element Video: CSS Background Color ★ +1 Sign in to track progress
  4. Cavalry发布主题在 教程
    CSS Colors CSS Colors In CSS, colors are specified by using a predefined color name, or with a RGB, HEX, HSL, RGBA, HSLA value. CSS Color Names In CSS, a color can be specified by using a predefined color name: Tomato Orange DodgerBlue MediumSeaGreen Gray SlateBlue Violet LightGray Try it Yourself » CSS/HTML support 140 standard color names. CSS Background Color You can set the background color for HTML elements: Hello World Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Example <h1 style="background-color:DodgerBlue;">Hello World</h1> <p style="background-color:Tomato;">Lorem ipsum...</p> Try it Yourself » CSS Text Color You can set the color of text: Hello World Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Example <h1 style="color:Tomato;">Hello World</h1> <p style="color:DodgerBlue;">Lorem ipsum...</p> <p style="color:MediumSeaGreen;">Ut wisi enim...</p> Try it Yourself » CSS Border Color You can set the color of borders: Hello World Hello World Hello World Example <h1 style="border:2px solid Tomato;">Hello World</h1> <h1 style="border:2px solid DodgerBlue;">Hello World</h1> <h1 style="border:2px solid Violet;">Hello World</h1> Try it Yourself » CSS Color Values In CSS, colors can also be specified using RGB values, HEX values, HSL values, RGBA values, and HSLA values: Same as color name "Tomato": rgb(255, 99, 71) #ff6347 hsl(9, 100%, 64%) Same as color name "Tomato", but 50% transparent: rgba(255, 99, 71, 0.5) hsla(9, 100%, 64%, 0.5) Example <h1 style="background-color:rgb(255, 99, 71);">...</h1> <h1 style="background-color:#ff6347;">...</h1> <h1 style="background-color:hsl(9, 100%, 64%);">...</h1> <h1 style="background-color:rgba(255, 99, 71, 0.5);">...</h1> <h1 style="background-color:hsla(9, 100%, 64%, 0.5);">...</h1> Try it Yourself » Learn more about Color Values You will learn more about RGB, HEX and HSL in the next chapters. Video: CSS Colors Introduction ★ +1 Sign in to track progress
  5. Cavalry发布主题在 教程
    CSS Errors CSS Errors Errors in CSS can lead to unexpected behavior or styles not being applied correctly. This page shows common CSS mistakes and how to avoid them. Missing Semicolons Forgetting a semicolon at the end of a property declaration can break the style rule. Example .bad { color: red background-color: yellow; } Try it Yourself » Invalid Property Names Using a property name that does not exist will simply be ignored by the browser. Example .bad { colr: blue; font-size: 16px; } Try it Yourself » Invalid Values Correct properties but invalid values will also be ignored. Example .bad { width: -100px; color: green; } Try it Yourself » Unclosed Braces If you forget to close a brace }, the entire rule may be ignored. Example .bad { padding: 20px; margin: 10px; Try it Yourself » Extra Colons or Braces Typos like extra colons or misplaced braces can cause rules to break. Example .bad { color:: blue; } Try it Yourself » Tips to Avoid CSS Errors Use a code editor with syntax highlighting. Validate your CSS with a CSS linter or validator. Write CSS in small sections and test frequently. ★ +1 Sign in to track progress
  6. Cavalry发布主题在 教程
    CSS Comments CSS Comments Comments are used to explain the CSS code, and may help when you edit the source code at a later date. Comments are also used to temporarily disable sections of CSS code within a stylesheet. Comments are ignored by browsers! A CSS comment is placed inside the HTML <style> element, and starts with /* and ends with */: Example /* This is a single-line comment */ p { color: red; } Try it Yourself » You can add comments wherever you want in the code: Example p { color: red; /* Set text color to red */ } Try it Yourself » Even in the middle of a code line: Example p { color: /*red*/blue; } Try it Yourself » Comments can also span multiple lines: Example /* This is a multi-line comment */ p { color: red; } Try it Yourself » HTML and CSS Comments From the HTML tutorial, you learned that you can add comments to your HTML source by using the <!--...--> syntax. In the following example, we use a combination of HTML and CSS comments: Example <!DOCTYPE html> <html> <head> <style> p { color: red; /* Set text color to red */ } </style> </head> <body> <h2>My Heading</h2> <!-- These paragraphs will be red --> <p>Hello World!</p> <p>This paragraph is styled with CSS.</p> <p>HTML and CSS comments are not shown in the output.</p> </body> </html> Try it Yourself » Video: CSS Comments ★ +1 Sign in to track progress
  7. Cavalry发布主题在 教程
    How To Add CSS How to Add CSS When a browser reads a style sheet, it will format the HTML document according to the information in the style sheet. There are three ways of inserting a style sheet: External CSS - link to an external .css file Internal CSS - use the <style> element in the head section Inline CSS - use the style attribute on HTML elements External CSS With an external style sheet, you can change the look of an entire website by changing just one file! Each HTML page must include a reference to the external style sheet file inside the <link> element, inside the head section. Example External styles are defined within the <link> element, inside the <head> section of an HTML page: <!DOCTYPE html> <html> <head> <link rel="stylesheet" href="mystyle.css"> </head> <body> <h1>This is a heading</h1> <p>This is a paragraph.</p> </body> </html> Try it Yourself » An external style sheet can be written in any text editor, and must be saved with a .css extension. The external .css file should not contain any HTML tags. Here is how the "mystyle.css" file looks: "mystyle.css" body { background-color: lightblue; } h1 { color: navy; margin-left: 20px; } Note: Do not add a space between the property value (20) and the unit (px): Incorrect (space): margin-left: 20 px; Correct (no space): margin-left: 20px; Video: How to add CSS to HTML ★ +1 Sign in to track progress
  8. Cavalry发布主题在 教程
    CSS Selectors CSS Selectors CSS selectors are used to "find" (or select) the HTML elements you want to style. We can divide CSS selectors into five categories: Simple selectors (select elements based on name, id, class) Combinator selectors (select elements based on a specific relationship between them) Pseudo-class selectors (select elements based on a certain state) Pseudo-elements selectors (select and style a part of an element) Attribute selectors (select elements based on an attribute or attribute value) This page will explain the most basic CSS selectors. The CSS element Selector The element selector selects HTML elements based on the element name. Example Here, all <p> elements on the page will be center-aligned, with a red text color: p { text-align: center; color: red; } Try it Yourself » The CSS id Selector The id selector uses the id attribute of an HTML element to select a specific element. The id of an element is unique within a page, so the id selector is used to select one unique element! To select an element with a specific id, write a hash (#) character, followed by the id of the element. Example The CSS rule below will be applied to the HTML element with id="para1": #para1 { text-align: center; color: red; } Try it Yourself » Note: An id name cannot start with a number! The CSS class Selector The class selector selects HTML elements with a specific class attribute. To select elements with a specific class, write a period (.) character, followed by the class name. Example In this example all HTML elements with class="center" will be red and center-aligned: .center { text-align: center; color: red; } Try it Yourself » You can also specify that only specific HTML elements should be affected by a class. Example In this example only <p> elements with class="center" will be red and center-aligned: p.center { text-align: center; color: red; } Try it Yourself » HTML elements can also refer to more than one class. Example In this example the <p> element will be styled according to class="center" and to class="large": <p class="center large">This paragraph refers to two classes.</p> Try it Yourself » Note: A class name cannot start with a number! ★ +1 Sign in to track progress
  9. Cavalry发布主题在 教程
    CSS Syntax CSS Syntax A CSS rule consists of a selector and a declaration block: The selector points to the HTML element you want to style. The declaration block contains one or more declarations separated by semicolons. Each declaration includes a CSS property name and a value, separated by a colon. Multiple CSS declarations are separated with semicolons, and declaration blocks are surrounded by curly braces. Example In this example all <p> elements will be center-aligned, with a red text color: p { color: red; text-align: center; } Try it Yourself » Example Explained p is a selector in CSS (it points to the HTML element you want to style: <p>). color is a property, and red is the property value text-align is a property, and center is the property value You will learn much more about CSS selectors and CSS properties in the next chapters! Video: CSS Syntax ★ +1 Sign in to track progress
  10. CSS Introduction What is CSS? CSS is the language we use to style a Web page. CSS stands for Cascading Style Sheets CSS describes how HTML elements are to be displayed on screen, paper, or in other media CSS saves a lot of work. It can control the layout of multiple web pages all at once External stylesheets are stored in CSS files CSS Demo - One HTML Page - Multiple Styles! Here we will show one HTML page displayed with four different stylesheets. Click on the "Stylesheet 1", "Stylesheet 2", "Stylesheet 3", "Stylesheet 4" links below to see the different styles: Why Use CSS? CSS is used to define styles for your web pages, including the design, layout and variations in display for different devices and screen sizes. CSS Example body { background-color: lightblue; } h1 { color: white; text-align: center; } p { font-family: verdana; font-size: 20px; } Try it Yourself » CSS Saves a Lot of Work! The CSS definitions are normally saved in an external .css file. With an external stylesheet file, you can change the look of an entire website by changing just one file! Video: CSS Introduction ★ +1 Sign in to track progress
  11. Cavalry发布主题在 教程
    CSS Tutorial Learn CSS CSS is the language we use to style an HTML document. CSS describes how HTML elements should be displayed. This tutorial will teach you CSS from basic to advanced. Start learning CSS now » 🏁 Tip: Sign in to track your progress. Examples in Each Chapter This CSS tutorial contains over 700 CSS examples. With our online editor, you can edit the CSS, and click on a button to view the result. CSS Example body { background-color: lightblue; } h1 { color: white; text-align: center; } p { font-family: verdana; font-size: 20px; } Try it Yourself » Click on the "Try it Yourself" button to see how it works. CSS Examples Learn from over 700 examples! With our editor, you can edit the CSS, and click on a button to view the result. Go to CSS Examples! Use the Menu We recommend reading this tutorial, in the sequence listed in the menu. If you have a large screen, the menu will always be present on the left. If you have a small screen, open the menu by clicking the top menu sign ☰. CSS Templates We have created some responsive W3.CSS templates for you to use. You are free to modify, save, share, and use them in all your projects. Free CSS Templates! CSS Exercises Many chapters in this tutorial end with an exercise where you can check your level of knowledge. See all CSS Exercises CSS Quiz Test your CSS skills with a quiz. Start CSS Quiz! Track Your Progress Create a W3Schools account and get access to more features and learning materials: View your completed tutorials, exercises, and quizzes Keep an eye on your progress and daily streaks Join the leaderboard and compete with others Get your own avatar and unlock new skins Create your own personal website Sign Up » Note: This is an optional feature. You can study at W3Schools without creating an account. CSS References At W3Schools you will find complete CSS references of all properties and selectors with syntax, examples, browser support, and more. CSS Properties CSS Browser Support CSS Selectors CSS Combinators CSS Pseudo-classes CSS Pseudo-elements CSS At-rules CSS Functions CSS Animatable CSS Web Safe Fonts CSS Units Px to Em Conversion CSS Colors CSS Default Values CSS Entities CSS Aural Kickstart your career Get certified by completing the course Get certified ★ +1 Sign in to track progress
  12. 昨天
    • 0次下载
    • 版本 1.0.0
    HuoNiu AI BOT — XenForo 智能 AI 自动回复机器人,论坛冷场、新帖无人回复、会员活跃度不足?HuoNiu AI BOT 为你的论坛增加一个真正的“AI 原住民”。它绑定真实 XenForo 用户账号,自动读取帖子内容,理解上下文并生成自然回复,24 小时在线,从第一天开始帮助社区提升活跃度。 一、核心特性 多机器人独立管理 支持创建多个机器人,每个机器人绑定不同的 XenForo 用户账号,并以对应账号身份发布回复。 可分别设定为技术答疑型、活泼互动型或专题科普型机器人,各自负责不同版块,互不干扰。 多家 AI 服务商接入 支持接入多家国际与国内 AI 服务商,包括 OpenAI、xAI、Google Gemini、Anthropic Claude、Mistral、Perplexity、DeepSeek、豆包、通义千问、腾讯混元、文心一言、Kimi、智谱 GLM、讯飞星火、百川 AI 等。 支持自定义兼容 OpenAI Chat Completions 格式的接口地址,可对接中转站、私有部署或本地模型服务。 每个机器人可单独选择模型,方便根据预算与需求灵活调整。 四种触发模式 新主题触发 有人发布新主题时自动回复,适合问答类社区。 主题内任意新回复触发 全程参与讨论,提高互动频率。 提及机器人账号触发 仅在被提及时才回复,减少打扰。 指定关键词触发 当帖子包含预设关键词时自动响应,实现精准互动。 上下文感知回复 可开启上下文模式,将主题内前若干楼层内容一并提交给 AI 生成回复。默认读取 8 楼内容,最多支持 20 楼,使回复更加连贯自然。 系统提示词定制 支持为每个机器人设置专属提示词,自定义身份设定、语气风格和回答逻辑,打造不同个性的 AI 角色。 版块白名单 可指定机器人仅在选定版块内活动,实现精细化管理。 冷却时间控制 可设置同一主题内的最小回复间隔时间,默认 120 秒,避免频繁刷屏。 回复署名 支持在回复末尾追加自定义说明文字,增强透明度。 安全机制 内置重复回复防护与自我屏蔽机制,避免机器人回复自己的帖子或重复回复同一内容。 异步后台执行 基于 XenForo Job Queue 机制,所有触发操作均在后台异步执行,不阻塞前端访问,不影响论坛性能。 二、适用场景 技术或问答社区 新帖自动提供初步解答,减轻版主与核心用户压力。 兴趣或内容社区 围绕关键词或讨论内容自动补充信息,提高帖子质量与讨论深度。 新论坛冷启动 在用户数量较少阶段帮助营造活跃氛围,增强新访客信任感。 多语言社区 支持选择不同地区的 AI 服务商,匹配不同语言与用户群体需求。
    免费
  13. HuoNiu AiBot - 多模型AI机器人 HuoNiu AI BOT — XenForo 智能 AI 自动回复机器人,论坛冷场、新帖无人回复、会员活跃度不足?HuoNiu AI BOT 为你的论坛增加一个真正的“AI 原住民”。它绑定真实 XenForo 用户账号,自动读取帖子内容,理解上下文并生成自然回复,24 小时在线,从第一天开始帮助社区提升活跃度。 一、核心特性 多机器人独立管理 支持创建多个机器人,每个机器人绑定不同的 XenForo 用户账号,并以对应账号身份发布回复。 可分别设定为技术答疑型、活泼互动型或专题科普型机器人,各自负责不同版块,互不干扰。 多家 AI 服务商接入 支持接入多家国际与国内 AI 服务商,包括 OpenAI、xAI、Google Gemini、Anthropic Claude、Mistral、Perplexity、DeepSeek、豆包、通义千问、腾讯混元、文心一言、Kimi、智谱 GLM、讯飞星火、百川 AI 等。 支持自定义兼容 OpenAI Chat Completions 格式的接口地址,可对接中转站、私有部署或本地模型服务。 每个机器人可单独选择模型,方便根据预算与需求灵活调整。 四种触发模式 新主题触发 有人发布新主题时自动回复,适合问答类社区。 主题内任意新回复触发 全程参与讨论,提高互动频率。 提及机器人账号触发 仅在被提及时才回复,减少打扰。 指定关键词触发 当帖子包含预设关键词时自动响应,实现精准互动。 上下文感知回复 可开启上下文模式,将主题内前若干楼层内容一并提交给 AI 生成回复。默认读取 8 楼内容,最多支持 20 楼,使回复更加连贯自然。 系统提示词定制 支持为每个机器人设置专属提示词,自定义身份设定、语气风格和回答逻辑,打造不同个性的 AI 角色。 版块白名单 可指定机器人仅在选定版块内活动,实现精细化管理。 冷却时间控制 可设置同一主题内的最小回复间隔时间,默认 120 秒,避免频繁刷屏。 回复署名 支持在回复末尾追加自定义说明文字,增强透明度。 安全机制 内置重复回复防护与自我屏蔽机制,避免机器人回复自己的帖子或重复回复同一内容。 异步后台执行 基于 XenForo Job Queue 机制,所有触发操作均在后台异步执行,不阻塞前端访问,不影响论坛性能。 二、适用场景 技术或问答社区 新帖自动提供初步解答,减轻版主与核心用户压力。 兴趣或内容社区 围绕关键词或讨论内容自动补充信息,提高帖子质量与讨论深度。 新论坛冷启动 在用户数量较少阶段帮助营造活跃氛围,增强新访客信任感。 多语言社区 支持选择不同地区的 AI 服务商,匹配不同语言与用户群体需求。 文件信息 提交者 Cavalry 提交于 02/28/26 类别 XenForo 查看文件
  14. 前几天
  15. NocturneMax注册了
  16. 我们发布了 XenForo 2.3.9 版本,以解决近期收到的一些潜在安全漏洞报告。此版本仅包含安全修复,之前承诺包含在 2.3.9 版本中的任何错误修复都将推迟到 2.3.10 版本发布。 所有已授权客户现在均可下载此版本。我们强烈建议所有运行 XenForo 2.3 早期版本的客户升级到此版本,以获得更高的稳定性。 已发现的问题如下: 防止与 BB 代码渲染相关的潜在存储型 XSS(跨站脚本)攻击 防止帖子中使用灯箱可能存在的 XSS 漏洞 防止通过已认证但恶意管理员用户实施的远程代码执行 (RCE) 漏洞利用 注意:如果您选择修补文件而不是进行完整升级,“文件健康检查”会将这些文件报告为“包含意外内容”。由于这些文件不再包含您 XF 版本出厂时的内容,因此这是正常现象,可以忽略。与以往一样,所有拥有有效许可证的客户均可免费下载新版本的 XenForo,他们现在可以从客户专区 获取新版本,或通过管理控制面板(工具 > 检查更新...)进行升级。 。您的安装已完成补丁更新,无需执行任何其他操作。您将继续使用 2.3.8 版本,直到 2.3.10 版本发布。 以下公共模板已发生更改: 附件宏 bb_code_tag_attach lightbox_macros 必要时,请使用“过时模板”页面中的合并系统来整合这些更改。 与以往一样,所有拥有有效许可证的客户均可免费下载新版本的 XenForo。 以下是最低系统要求: PHP 7.2 或更高版本(推荐使用 PHP 8.3) MySQL 5.7 及更高版本(也兼容 MariaDB/Percona 等) 所有官方插件都需要 XenForo 2.3。 增强搜索功能至少需要 Elasticsearch 7.2 版本。
  17. xiaoru注册了
  18. 欢迎使用本站积分系统!积分是本站的虚拟货币,可以用来解锁付费内容、购买资源、以及转赠给其他会员。本文将详细介绍积分的所有获取方式与消耗方式。 一、如何获得积分1. 注册奖励只要你完成账户注册并通过验证,系统就会自动发放一笔注册欢迎积分。这是你在本站获得的第一笔积分,开门红! 2. 每日签到每天登录后前往签到页面完成签到,即可随机获得一定数量的积分。每天只能签到一次,坚持每天签到积累更多积分! 3. 发帖/发布内容每当你在论坛发布新帖子、写新文章、上传图片等内容时,系统会自动奖励你一定数量的积分。内容创作越多,积分越多。(管理员可设置每日发帖奖励上限) 4. 回复/评论每次回复他人帖子或发表评论,也可以获得积分奖励。积极参与讨论,既能帮助他人,又能积累积分!(管理员可设置每日回复奖励上限) 5. 内容被点赞当其他会员对你发布的内容点赞时,你将自动获得积分奖励。内容质量越高、获得的点赞越多,赚取的积分也就越多。注意:自己给自己点赞不会获得奖励,且每日有获奖上限。 6. 出售付费资源如果你在资源下载区上传了付费文件,每当有人购买你的文件,你将自动获得销售分成(平台会保留一小部分作为手续费)。上传优质资源,持续被动收入! 7. 充值购买积分你可以通过站内充值中心直接购买积分套餐。部分套餐在基础积分之外还会额外赠送bonus积分,购买越多越划算。 8. 消费返积分在本站商城消费真实货币时,可按一定比例换算获得积分返还(是否开启以管理员设置为准)。 9. 其他会员转账其他会员可以直接将积分转给你,转账到账的积分会实时更新到你的余额中。 10. 管理员奖励管理员可能会因为举报违规、参加活动、贡献优质内容等原因,手动为你发放积分奖励。 二、积分可以用来做什么1. 解锁付费帖子/内容部分帖子或文章的作者设置了积分价格,需要支付一定积分才能查看完整内容。支付后即可永久查看,无需重复付费。若余额不足,系统会引导你前往充值中心补充积分。 2. 购买付费资源文件资源下载区的部分资源需要使用积分购买才能下载。购买后即永久拥有下载权限。 3. 转账给其他会员你可以将自己的积分转账给其他会员。转账时可能会产生少量手续费(具体比例以站内公告为准)。 4. 管理员扣除若有违规行为,管理员有权扣除你的积分,请遵守社区规范。 温馨提示所有积分变动(获得或消耗)都会收到站内通知,可在通知中心查看详情。 积分余额及历史记录可在个人中心的「积分」页面随时查看。 如有疑问,欢迎联系管理员。 祝大家在本站玩得开心,积分满满!🎉
  19. Cavalry更改了个人空间照片
  20. HuoNiu QQ 登录 for XenForo 2.3 HuoNiu QQ 登录是专为 XenForo 2.3 打造的 QQ OAuth2 第三方登录插件,基于 XenForo 原生 Connected Account 体系深度集成,与 Google、Facebook 等官方提供商保持同等架构标准。 无需安装额外依赖,开箱即用。 ✨ 核心功能QQ 一键登录 / 注册 — 用户通过 QQ 授权即可完成登录或注册,无需填写密码 自动同步 QQ 头像 — 注册时自动拉取 QQ 头像作为论坛头像 智能用户名处理 — 自动使用 QQ 昵称作为用户名,过滤非法字符,支持 CJK 中文,自动处理重名冲突 灵活兜底策略 — 昵称为空或不可用时,以可配置前缀 + OpenID 后缀自动生成用户名 绑定已有账号 — 现有用户可在账户设置中绑定 QQ,后续直接 QQ 登录 管理后台可视化配置 — App ID、App Key 填入即生效,无需改动任何代码 文件信息 提交者 OKAA 提交于 02/23/26 类别 XenForo 查看文件
    • 0次下载
    • 版本 2.0.0
    HuoNiu QQ 登录是专为 XenForo 2.3 打造的 QQ OAuth2 第三方登录插件,基于 XenForo 原生 Connected Account 体系深度集成,与 Google、Facebook 等官方提供商保持同等架构标准。 无需安装额外依赖,开箱即用。 ✨ 核心功能QQ 一键登录 / 注册 — 用户通过 QQ 授权即可完成登录或注册,无需填写密码 自动同步 QQ 头像 — 注册时自动拉取 QQ 头像作为论坛头像 智能用户名处理 — 自动使用 QQ 昵称作为用户名,过滤非法字符,支持 CJK 中文,自动处理重名冲突 灵活兜底策略 — 昵称为空或不可用时,以可配置前缀 + OpenID 后缀自动生成用户名 绑定已有账号 — 现有用户可在账户设置中绑定 QQ,后续直接 QQ 登录 管理后台可视化配置 — App ID、App Key 填入即生效,无需改动任何代码
    27.00 CNY
  21. wcl注册了
  22. 之前的
  23. DEMO回复到 Cavalry的主题在 教程
    回复看看
  24. 这是我们三月份的维护版本。 主要变化包括: 新增:完成个人资料的成就动作。 已更新:屏幕阅读器的用户界面辅助功能。 更新:现在可以从搜索结果中删除过往事件。 #6270 Fix EditorLocations extension for Courses and Lessons #6408 Copy Followers on Topic Split #6450 validate the image size/position for cropping #6452 Removed unused quickSearch controller #6453 Converted navigation panel into web component #6457 Removed unused controllers and JS templates #6469 Don't run spam analysis if we're in the ACP #6470 Added the className option to ipsHovercard #6477 Missing email template names #6478 Delete ips.ui.accordion.js #6494 fix broken „stop ignoring“ link #6496 Fix PM folder creation for new members #6497 Fix return types for Followable::containerFollowerCount #6500 remove the failed s3 deletion request logging #6501 5829 - Theme editor lifecycle updates #6505 Remove unnecessary (and incorrect) approval queue cleanup setp from the initial upgrade #6506 Fix empty Tag Navigation Extension submission #6508 Fix issues with broken Pages fields #6514 Toggle the „require customer field while registration“ if it’s not shown while the registartion #6515 Fix an issue where two pages in the same folder can be marked default #6517 Fix an issue where merging 2 tags can result in duplicates #6518 Reference src property of element #6522 Fix an issue where background images in custom CSS would sometimes disappear #6527 Converted .ipsAlert to <dialog> #6532 Allow past events to be excluded from search results #6533 Fix an issue where legacy builder pages with no wrapper showed a blank white screen #6536 Fix an issue where JS language files did not always build correctly #6538 Fix broken commerce product forms #6542 PHPDoc Type Annotations #6549 Restore mobile navigation bar on tablets #6553 Validate the Tags before saving them to the DB #6556 Fix an issue where debug log checks failed during install #6557 Remove Log::hookDetails() #6562 Prevent invalid voter data from breaking Polls #6563 Fix databases not showing in the ACP for Self Hosted #6570 Significant accessibility improvements, including an updated dialog component #6572 fix infinite redirection loop in the theme editor #6575 Add bulkmail notification settings to the ACP => Registration Settings Form #6581 Fix restoring of deleted topics requiring approval #6585 Prevent that the Node Navbar Extension can throw an exception when the node doesn’t exist #6599 Fix IPS\Db object is not fully initialized #6604 fix broken referrer #6605 Fix few missing / not translatable language strings #6613 Allow profile fields to be automatically included in member search #6614 Implemented AchievementAction extension for profile completion #6615 Fix an issue where some stats controllers threw a "CSRF key" error #6617 Fix an issue where the Banned MemberFilter extension did not always calculate the match correctly #6618 Fix an issue where an invalid card can break the invoice warnings task #6622 Converted search modal to <dialog> with focus trapping #6629 Accessiblity: Minimal Contact page #6630 Remove duplicate dropColumn instruction #6631 Fixed duplicate error code #6633 Add missing JS language strings #6636 Added accessible title for search dialog #6638 Improved spacing of mobile navigation panel #6640 remove setting of deprecated column #6645 Fix color of summary in Stream Subscriptions in dark emails #6653 Improved accessibility of Registration form
  25. IPS-OKSEO Pro — Invision Community 5.x 全栈 SEO 增强插件 IPS-OKSEO Pro 是一款深度整合 IPS 框架的 SEO 全功能插件,覆盖从内容发布到搜索引擎收录的完整链路,帮助站长无需任何第三方工具即可完成全站 SEO 优化与管理。 主要功能多引擎一键推送 支持 Google Search Console、Bing Webmaster、百度主动推送、Yandex(IndexNow),发布内容后自动触发推送,无需手动登录任何站长平台。 Open Graph & Schema.org 全站注入 自动为所有页面补全 OG 标签和 JSON-LD 结构化数据,提升社交分享展示效果与搜索结果富摘要。 SEO 健康评分 实时抓取分析任意页面,从标题、描述、H1、图片 Alt、Canonical、结构化数据等 10+ 维度打分(满分 100),并给出具体优化建议。 Meta 覆盖管理 无需修改主题,直接在后台为任意 URL 设置自定义 Title / Description / Keywords,支持全站统一标题后缀规则。 批量 Meta 分析 批量输入多个 URL,一次性检测所有页面的 SEO 核心指标,快速定位全站短板。 死链监控 & 301 跳转管理 自动捕获 404 错误并归档,支持一键转化为 301 跳转规则,防止权重流失。 Robots.txt 在线管理 在线编辑、下载、恢复默认,修改即时生效。 图片 Alt 扫描 扫描全站内容,找出所有缺少 Alt 属性的图片,精准定位修复。 兼容性Invision Community 5.x 无任何第三方依赖,纯原生 IPS 实现 文件信息 提交者 OKAA 提交于 02/18/26 类别 Invision Community 查看文件
    • 0次下载
    • 版本 5.3.0
    IPS-OKSEO Pro 是一款深度整合 IPS 框架的 SEO 全功能插件,覆盖从内容发布到搜索引擎收录的完整链路,帮助站长无需任何第三方工具即可完成全站 SEO 优化与管理。 主要功能多引擎一键推送 支持 Google Search Console、Bing Webmaster、百度主动推送、Yandex(IndexNow),发布内容后自动触发推送,无需手动登录任何站长平台。 Open Graph & Schema.org 全站注入 自动为所有页面补全 OG 标签和 JSON-LD 结构化数据,提升社交分享展示效果与搜索结果富摘要。 SEO 健康评分 实时抓取分析任意页面,从标题、描述、H1、图片 Alt、Canonical、结构化数据等 10+ 维度打分(满分 100),并给出具体优化建议。 Meta 覆盖管理 无需修改主题,直接在后台为任意 URL 设置自定义 Title / Description / Keywords,支持全站统一标题后缀规则。 批量 Meta 分析 批量输入多个 URL,一次性检测所有页面的 SEO 核心指标,快速定位全站短板。 死链监控 & 301 跳转管理 自动捕获 404 错误并归档,支持一键转化为 301 跳转规则,防止权重流失。 Robots.txt 在线管理 在线编辑、下载、恢复默认,修改即时生效。 图片 Alt 扫描 扫描全站内容,找出所有缺少 Alt 属性的图片,精准定位修复。 兼容性Invision Community 5.x 无任何第三方依赖,纯原生 IPS 实现
    27.00 CNY
  26. Keyboard ShortcutsKeyboard Shortcuts For Windows and MacKeyboard shortcuts are often used in modern operating systems and computer software programs. Learning and using keyboard shortcuts can save you a lot of time. Basic ShortcutsDescription Windows Mac OS Edit menu Alt + E Ctrl + F2 + F File menu Alt + F Ctrl + F2 + E View menu Alt + V Ctrl + F2 + V Select all text Ctrl + A Cmd + A Copy text Ctrl + C Cmd + C Find text Ctrl + F Cmd + F Find and replace text Ctrl + H Cmd + F New Document Ctrl + N Cmd + N Open a file Ctrl + O Cmd + O Print options Ctrl + P Cmd + P Save file Ctrl + S Cmd + S Paste text Ctrl + V Cmd + V Cut text Ctrl + X Cmd + X Redo text Ctrl + Y Shift + Cmd + Z Undo text Ctrl + Z Cmd + Z Text EditingDescription Windows Mac OS Cursor Movement Go to the right or to the beginning of next line break Right Arrow Right Arrow Go to the left or to the end of previous line break Left Arrow Left Arrow Go up one row Up Arrow Up Arrow Go down one row Down Arrow Down Arrow Go to the beginning of the current line Home Cmd + Left Arrow Go to the end of the current line End Cmd + Right Arrow Go to the beginning of the document Ctrl + Home Cmd + Up Arrow Go to the end of the document Ctrl + End Cmd + Down Arrow Move up one frame Page Up Fn + Up Arrow Move down one frame Page Down Fn + Down Arrow Go to beginning of previous word Ctrl + Left Arrow Option + Left Arrow Go to beginning of next word Ctrl + Right Arrow Option + Right Arrow Go to beginning of line break Ctrl + Up Arrow Cmd + Left Arrow Go to end of line break Ctrl + Down Arrow Cmd + Right Arrow Text Selection Select characters to the left Shift + Left Arrow Shift + Left Arrow Select characters to the right Shift + Right Arrow Shift + Right Arrow Select lines upwards Shift + Up Arrow Shift + Up Arrow Select lines downwards Shift + Down Arrow Shift + Down Arrow Select words to the left Shift + Ctrl + Left Shift + Opt + Left Select words to the right Shift + Ctrl + Right Shift + Opt + Right Select paragraphs to the left Shift + Ctrl + Up Shift + Opt + Up Select paragraphs to the right Shift + Ctrl + Down Shift + Opt + Down Select text between the cursor and the beginning of the current line Shift + Home Cmd + Shift + Left Arrow Select text between the cursor and the end of the current line Shift + End Cmd + Shift + Right Arrow Select text between the cursor and the beginning of the document Shift + Ctrl + Home Cmd + Shift + Up Arrow or Cmd + Shift + Fn + Left Arrow Select text between the cursor and the end of the document Shift + Ctrl + End Cmd + Shift + Down Arrow or Cmd + Shift + Fn + Right Arrow Select one frame at a time of text above the cursor Shift + Page Up Shift + Fn + Up Arrow Select one frame at a time of text below the cursor Shift + Page Down Shift + Fn + Down Arrow Select all text Ctrl + A Cmd + A Find text Ctrl + F Cmd + F Text Formatting Make selected text bold Ctrl + B Cmd + B Make selected text italic Ctrl + I Cmd + I Underline selected text Ctrl + U Cmd + U Make selected text superscript Ctrl + Shift + = Cmd + Shift + = Make selected text subscript Ctrl + = Cmd + = Text Editing Delete characters to the left Backspace Backspace Delete characters to the right Delete Fn + Backspace Delete words to the right Ctrl + Del Cmd + Backspace Delete words to the left Ctrl + Backspace Cmd + Fn + Backspace Indent Tab Tab Outdent Shift + Tab Shift + Tab Copy text Ctrl + C Cmd + C Find and replace text Ctrl + H Cmd + F Paste text Ctrl + V Cmd + V Cut text Ctrl + X Cmd + X Redo text Ctrl + Y Shift + Cmd + Z Undo text Ctrl + Z Cmd + Z Web BrowsersDescription Windows Mac OS Navigation Scroll down a frame Space or Page Down Space or Fn + Down Arrow Scroll up a frame Shift + Space or Page Up Shift + Space or Fn + Up Arrow Go to bottom of the page End Cmd + Down Arrow Go to top of the page Home Cmd + Up Arrow Go back Alt + Left Arrow or Backspace Cmd + Left Arrow Go forward Alt + Right Arrow or Shift + Backspace Cmd + Right Arrow Refresh a webpage F5 Cmd + R Refresh a webpage (no cache) Ctrl + F5 Cmd + Shift + R Stop Esc Esc Toggle full-screen F11 Cmd + Shift + F Zoom in Ctrl + + Cmd + + Zoom out Ctrl + - Cmd + - Zoom 100% (default) Ctrl + 0 Cmd + 0 Open homepage Alt + Home Option + Home or Option + Fn + Left Arrow Find text Ctrl + F Cmd + F Tab / Window Management Open a new tab Ctrl + T Cmd + T Close current tab Ctrl + W Cmd + W Close all tabs Ctrl + Shift + W Cmd + Q Close all tabs except the current tab Ctrl + Alt + F4 Cmd + Opt + W Go to next tab Ctrl + Tab Control + Tab or Cmd + Shift + Right Arrow Go to previous tab Ctrl + Shift + Tab Shift + Control + Tab or Cmd + Shift + Left Arrow Go to a specific tab number Ctrl + 1-8 Cmd + 1-8 Go to the last tab Ctrl + 9 Cmd + 9 Reopen the last closed tab Ctrl + Shift + T Cmd + Shift + T Open a new window Ctrl + N Cmd + N Close current window Alt + F4 Cmd + W Go to next window Alt + Tab Cmd + Tab Go to previous window Alt + Shift + Tab Cmd + Shift + Tab Reopen the last closed window Ctrl + Shift + N Open links in a new tab in the background Ctrl + Click Cmd + Click Open links in a new tab in the foreground Ctrl + Shift + Click Cmd + Shift + Click Print current webpage Ctrl + P Cmd + P Save current webpage Ctrl + S Cmd + S Address Bar Cycle between toolbar, search bar, and page elements Tab Tab Go to browser's address bar Ctrl + L or Alt + D Cmd + L Focus and select the browser's search bar Ctrl + E Cmd + E / Cmd + K Open the address bar location in a new tab Alt + Enter Opt + Enter Display a list of previously typed addresses F4 Add "www." to the beginning and ".com" to the end of the text typed in the address bar (e.g., type "w3schools" and press Ctrl + Enter to open "www.w3schools.com") Ctrl + Enter Cmd + Enter or Control + Enter Bookmarks Open the bookmarks menu Ctrl + B Cmd + B Add bookmark for current page Ctrl + D Cmd + Opt + B or Cmd + Shift + B Open browsing history Ctrl + H Cmd + Shift + H or Cmd + Y Open download history Ctrl + J Cmd + J or Cmd + Shift + J ScreenshotsDescription Windows Mac OS Save screenshot of the whole screen as file Cmd + Shift + 3 Copy screenshot of the whole screen to the clipboard PrtScr (Print Screen) or Ctrl + PrtScr Cmd + Ctrl + Shift + 3 Save screenshot of window as file Cmd + Shift + 4, then Space Copy screenshot of window to the clipboard Alt + PrtScr Cmd + Ctrl + Shift + 4, then Space Copy screenshot of wanted area to the clipboard Cmd + Ctrl + Shift + 4 Save screenshot of wanted area as file Cmd + Shift + 4 Note: Due to different keyboard setups, some shortcuts may not be compatible for all users.
  27. Pixels to Ems ConversionPixel to Em ConverterThe tool below allows you to work out the em sizes from pixels (or vice versa). Set a default pixel size for body (usually 16px) Then, convert a pixel value to em, based on the default pixel size Or, convert an em value to pixels, based on the default pixel size Set a default pixel size: px Convert PX to EM: px Convert EM to PX: em Convert Result: Body Font SizeIn the table below, select a body font size in pixels (px) to display a complete "px to em and percent" conversion table. Tip: The default font size is usually 16px. What is the difference between PX, EM and Percent? Pixel is a static measurement, while percent and EM are relative measurements. The size of an EM or percent depends on its parent. If the text size of body is 16 pixels, then 150% or 1.5 EM will be 24 pixels (1.5 * 16). Look at CSS Units for more measurement units.
  28. HTTP Request Methods What is HTTP? The Hypertext Transfer Protocol (HTTP) is designed to enable communications between clients and servers. HTTP works as a request-response protocol between a client and server. Example: A client (browser) sends an HTTP request to the server; then the server returns a response to the client. The response contains status information about the request and may also contain the requested content. HTTP Methods GET POST PUT HEAD DELETE PATCH OPTIONS CONNECT TRACE The two most common HTTP methods are: GET and POST. The GET Method GET is used to request data from a specified resource. Note that the query string (name/value pairs) is sent in the URL of a GET request: /test/demo_form.php?name1=value1&name2=value2 Some notes on GET requests: GET requests can be cached GET requests remain in the browser history GET requests can be bookmarked GET requests should never be used when dealing with sensitive data GET requests have length restrictions GET requests are only used to request data (not modify) The POST Method POST is used to send data to a server to create/update a resource. The data sent to the server with POST is stored in the request body of the HTTP request: POST /test/demo_form.php HTTP/1.1 Host: w3schools.com name1=value1&name2=value2 Some notes on POST requests: POST requests are never cached POST requests do not remain in the browser history POST requests cannot be bookmarked POST requests have no restrictions on data length Compare GET vs. POST The following table compares the two HTTP methods: GET and POST. GET POST BACK button/Reload Harmless Data will be re-submitted (the browser should alert the user that the data are about to be re-submitted) Bookmarked Can be bookmarked Cannot be bookmarked Cached Can be cached Not cached Encoding type application/x-www-form-urlencoded application/x-www-form-urlencoded or multipart/form-data. Use multipart encoding for binary data History Parameters remain in browser history Parameters are not saved in browser history Restrictions on data length Yes, when sending data, the GET method adds the data to the URL; and the length of a URL is limited (maximum URL length is 2048 characters) No restrictions Restrictions on data type Only ASCII characters allowed No restrictions. Binary data is also allowed Security GET is less secure compared to POST because data sent is part of the URL Never use GET when sending passwords or other sensitive information! POST is a little safer than GET because the parameters are not stored in browser history or in web server logs Visibility Data is visible to everyone in the URL Data is not displayed in the URL The PUT Method PUT is used to send data to a server to create/update a resource. The difference between POST and PUT is that PUT requests are idempotent. That is, calling the same PUT request multiple times will always produce the same result. In contrast, calling a POST request repeatedly have side effects of creating the same resource multiple times. The HEAD Method HEAD is almost identical to GET, but without the response body. In other words, if GET /users returns a list of users, then HEAD /users will make the same request but will not return the list of users. A HEAD request is useful for checking what a GET request will return before actually making a GET request - a HEAD request can read the Content-Length header to check the size of the file, without actually downloading the file. The DELETE Method The DELETE method deletes the specified resource. The PATCH Method The PATCH method is used to apply partial modifications to a resource. The OPTIONS Method The OPTIONS method describes the communication options for the target resource. The CONNECT Method The CONNECT method is used to start a two-way communications (a tunnel) with the requested resource. The TRACE Method The TRACE method is used to perform a message loop-back test that tests the path for the target resource (useful for debugging purposes).

帐户

导航

搜索

搜索

配置浏览器推送通知

Chrome (安卓)
  1. 轻敲地址栏旁的锁形图标。
  2. 轻敲权限 → 通知。
  3. 调整你的偏好。
Chrome (台式电脑)
  1. 点击地址栏中的挂锁图标。
  2. 选择网站设置。
  3. 找到通知选项并调整你的偏好。