share button
v1.1.3
share-button使用本机OS共享选项共享网页的Web组件。
演示|进一步阅读
一般用法示例:
< script type =" module " src =" share-button.js " > </ script >
< share-button >
< button > Share </ button >
</ share-button >使用后备链接的示例:
< script type =" module " src =" share-button.js " > </ script >
< share-button >
< button > Share </ button >
< a
href =" https://twitter.com/intent/tweet/?url=https://website.com&text=Example&via=DavidDarnes "
>
Post to Twitter
</ a >
< a href =" https://facebook.com/sharer/sharer.php?u=https://website.com " >
Post to Facebook
</ a >
< a
href =" https://www.linkedin.com/shareArticle?url=https://website.com&title=Example&source=Title&mini=true "
>
Post to LinkedIn
</ a >
<!-- Find more sharing links here https://codepen.io/daviddarnes/pen/GRJgoxy -->
</ share-button >
< style >
share-button:not(:defined) button,
share-button:defined a {
display: none;
}
share-button:not(:defined) a + a {
margin-inline-start: 1ch;
}
</ style >使用后备readonly输入的示例:
< script type =" module " src =" share-button.js " > </ script >
< share-button >
< button > Share </ button >
< label >
Share this page
< input
type =" url "
readonly
value =" https://daviddarnes.github.io/share-button/demo.html "
onclick =" this.select() "
/>
</ label >
</ share-button >
< style >
share-button:not(:defined) button,
share-button:defined label {
display: none;
}
</ style > 此Web组件允许您:
button元素显示本机OS共享选项以共享当前网页您有一些选择(选择其中之一):
npm install @daviddarnes/share-button确保在项目中包括<script> (选择其中之一):
<!-- Host yourself -->
< script type =" module " src =" share-button.js " > </ script > <!-- 3rd party CDN, not recommended for production use -->
< script
type =" module "
src =" https://www.unpkg.com/@daviddarnes/[email protected]/share-button.js "
> </ script > <!-- 3rd party CDN, not recommended for production use -->
< script
type =" module "
src =" https://esm.sh/@daviddarnes/[email protected] "
> </ script > 感谢以下人员: