书签图片问题

发布于 2024-08-05 04:05:05 字数 228 浏览 2 评论 0原文

我正在尝试将书签设置为

IF(url 以 .jpg || .png || .jpeg 结尾) 做某事(网址)

ELSE 将鼠标悬停在任何图像上,在其上放置 50% 不透明度的红色覆盖物。并且 onclick Something(this.src)

Catch,它周围可能已经有一个链接:

I'm trying to make bookmarklet to

IF(url ends in .jpg || .png || .jpeg)
dosomething(the url)

ELSE
onhover of any image, put a 50% opacity red cover over it. And onclick something(this.src)

Catch, there might be a link already around it:

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月隐月明月朦胧 2024-08-12 04:05:05

使用“javscript:”创建小书签。例如,下面是使用 Google 书签为页面添加书签的小书签代码:

javascript:(function(){var%20a=window,b=document,c=encodeURIComponent,d=a.open("http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk="+c(b.location)+"&title="+c(b.title),"bkmk_popup","left="+((a.screenX||a.screenLeft)+10)+",top="+((a.screenY||a.screenTop)+10)+",height=420px,width=550px,resizable=1,alwaysRaised=1");a.setTimeout(function(){d.focus()},300)})();

我认为“window.location.href”将为您提供该页面的 URL。暂时不知道不透明度

Use "javscript:" to create a bookmarklet. For example, here is the bookmarklet code to bookmark a page using Google Bookmarks:

javascript:(function(){var%20a=window,b=document,c=encodeURIComponent,d=a.open("http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk="+c(b.location)+"&title="+c(b.title),"bkmk_popup","left="+((a.screenX||a.screenLeft)+10)+",top="+((a.screenY||a.screenTop)+10)+",height=420px,width=550px,resizable=1,alwaysRaised=1");a.setTimeout(function(){d.focus()},300)})();

I think "window.location.href" will give you the URL of the page. Don't know about the opacity offhand

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文