- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个博客http://www.rawdevart.com/
我已经安装了一个脚本,用于自动更改加载后的所有图像的 alt
和 title
。我使用的脚本如下:
<b:if cond='data:blog.homepageUrl!=data:blog.url'>
<script type='text/javascript'>
//<![CDATA[
$(document).ready(function() {
$('img').each(function(){
var $img = $(this);
var filename = $img.attr('src')
var returnt=filename.substring((filename.lastIndexOf('/'))+1, filename.lastIndexOf('.'));
var ctitle=returnt.replace(/%2B|_/g, " ").replace(/%2521|_/g,"!");
if((returnt=="if_go-previous_118774")||(returnt=="if_go-next_118773"))
{
if(returnt=="if_go-previous_118774")
{
$img.attr('title', "Previous Chapter");
$img.attr('alt' ,"Previous Chapter");
}
else if(returnt=="if_go-next_118773")
{
$img.attr('title', "Next Chapter");
$img.attr('alt' ,"Next Chapter");
}
else if(returnt=="ch-list")
{
$img.attr('title', "Chapter List");
$img.attr('alt' ,"Chapter List");
}
}else{
ctitle=getTitle+" Page "+ctitle;
$img.attr('title', ctitle);
$img.attr('alt' ,ctitle);
}
});
});
//]]>
我有一些照片,我想用特定的值重命名它,所以我在里面添加了很多 if。
这是我在互联网上找到的 LazyLoad Images Script,据说可以在 Blogger 中使用。
<script type='text/javascript'>//<![CDATA[
(function(a){a.fn.lazyload=function(b){var c={threshold:0,failurelimit:0,event:"scroll",effect:"show",container:window};if(b){a.extend(c,b)}var d=this;if("scroll"==c.event){a(c.container).bind("scroll",function(b){var e=0;d.each(function(){if(a.abovethetop(this,c)||a.leftofbegin(this,c)){}else if(!a.belowthefold(this,c)&&!a.rightoffold(this,c)){a(this).trigger("appear")}else{if(e++>c.failurelimit){return false}}});var f=a.grep(d,function(a){return!a.loaded});d=a(f)})}this.each(function(){var b=this;if(undefined==a(b).attr("original")){a(b).attr("original",a(b).attr("src"))}if("scroll"!=c.event||undefined==a(b).attr("src")||c.placeholder==a(b).attr("src")||a.abovethetop(b,c)||a.leftofbegin(b,c)||a.belowthefold(b,c)||a.rightoffold(b,c)){if(c.placeholder){a(b).attr("src",c.placeholder)}else{a(b).removeAttr("src")}b.loaded=false}else{b.loaded=true}a(b).one("appear",function(){if(!this.loaded){a("<img />").bind("load",function(){a(b).hide().attr("src",a(b).attr("original"))[c.effect](c.effectspeed);b.loaded=true}).attr("src",a(b).attr("original"))}});if("scroll"!=c.event){a(b).bind(c.event,function(c){if(!b.loaded){a(b).trigger("appear")}})}});a(c.container).trigger(c.event);return this};a.belowthefold=function(b,c){if(c.container===undefined||c.container===window){var d=a(window).height()+a(window).scrollTop()}else{var d=a(c.container).offset().top+a(c.container).height()}return d<=a(b).offset().top-c.threshold};a.rightoffold=function(b,c){if(c.container===undefined||c.container===window){var d=a(window).width()+a(window).scrollLeft()}else{var d=a(c.container).offset().left+a(c.container).width()}return d<=a(b).offset().left-c.threshold};a.abovethetop=function(b,c){if(c.container===undefined||c.container===window){var d=a(window).scrollTop()}else{var d=a(c.container).offset().top}return d>=a(b).offset().top+c.threshold+a(b).height()};a.leftofbegin=function(b,c){if(c.container===undefined||c.container===window){var d=a(window).scrollLeft()}else{var d=a(c.container).offset().left}return d>=a(b).offset().left+c.threshold+a(b).width()};a.extend(a.expr[":"],{"below-the-fold":"$.belowthefold(a, {threshold : 0, container: window})","above-the-fold":"!$.belowthefold(a, {threshold : 0, container: window})","right-of-fold":"$.rightoffold(a, {threshold : 0, container: window})","left-of-fold":"!$.rightoffold(a, {threshold : 0, container: window})"})})(jQuery);$(function(){$("img").lazyload({placeholder:"http://i22.servimg.com/u/f22/15/42/72/40/grey10.gif",effect:"fadeIn",threshold:"-50"})})//]]></script>
在上面的延迟加载脚本中,有一个特定的部分给我带来了问题:占位符:“http://i22.servimg.com/u/f22/15/42/72/40/grey10.gif”
。
这部分脚本的使用是使所有图像 alt
和 title
值变得像 *Title of the chapter* grey10
.
顺便说一句,变量getTitle
用于获取章节的名称。
这是我面临的问题的一个例子:
假设在这个链接中:http://www.rawdevart.com/2017/09/legend-chapter-6-raw-manga.html
当您将鼠标移到一张图片上时,您可以看到第二张图片的 alt
:Legend Chapter 6 Raw Manga Page 002
002 是图像链接的最后一个字符 URL/002.jpeg
正在通过脚本进行处理,并仅将其制作为 002,然后使用 getTitle 添加。
但是在使用 Lazy Load 之后,alt
变成了 Legend Chapter 6 Raw Manga Page grey10
正如我所看到的逻辑是如何工作的,当页面被加载时,第一个图像被原封不动地加载,第二个图像被占位符 gif 文件替换。然后当我们向下移动时,gif 图像将被替换为原始图像。但是通过这样做,我想要的 alt 和 title 并没有获得。
那么有没有办法在不损失任何功能的情况下使用这两个脚本?请帮助。
顺便说一句,你可以在链接 http://i22.servimg.com/u/f22/15/42/72/40/grey10.gif
中放入任何内容,用任何字母替换 grey10像 http://i22.servimg.com/u/f22/15/42/72/40/anyshit.gif
一样,它仍然提供 1x1 分辨率的图像。希望这会有所帮助。
最佳答案
因为问题是在使用延迟加载脚本时选择了错误的图像 URL。我们可以检查图像元素中是否存在 original
属性(它始终包含正确的图像 URL)并使用它来分配 title
和 alt
属性。在脚本中更改行 -
var filename = $img.attr('src');
到-
if($img.attr('original')){
var filename = $img.attr('original');
} else {
var filename = $img.attr('src');
}
关于javascript - 在 Blogger 中同时使用 Lazy Load 和 Auto Image Alt and Title Changer 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46017067/
当我调用 png.Decode(imageFile) 时,它返回类型 image.Image。但我找不到将其转换为 image.NRGBA 或 image.RGBA 的记录方式,我可以在其上调用 At
image/jpeg 和 image/png 包有 Decode 和 Encode 函数,可以读取和写入 jpeg 和 png 图像,但 image/gif 包没有 - 只有 Decode 和 Dec
我正在尝试从一系列任意的非调色板图像创建动画 GIF。为了创建调色板图像,我需要以某种方式想出一个调色板。 // RGBA, etc. images from somewhere else var f
我在今年夏天的空闲时间使用 Go 镜像包进行一些练习。 package main import ( "os" "image" "image/png" "image/co
关闭。这个问题需要debugging details .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 1年前关闭。 Improve this question 今天
我正在尝试在 TilePane 中列出图像。当我尝试创建图像 new ImageView("address"); 时出现错误,地址如下: "file:D:/Chrysanthemum.jpeg/" 以
我有一个用于为画廊选择图像的表单,我希望允许用户仅选择 jpg、gif 和 png 图像格式。 现在,为了测试,我将图像的扩展名更改为 .bmp,例如“image1.bmp”,当我在输入文件中单击以选
我有创建图像的代码:(m_img 是 javafx.scene.image.Image) Image m_img = new Image("file:" + p_Fil.getAbsoluteFile
假设我有一个这样的 8 位灰度图像: var pixels []byte = ... width := 100 height := 100 如何将其转换为实现 image.Image 的东西? 最佳答
这段代码是我在localhost:8088 URL上的索引/主页的一部分,如果我想将用户发送到url localhost:8088/image/1,我应该写href='image/{{$image->
我正在尝试对图像进行简单的裁剪。这是代码 from PIL.Image import Image def get_image_half(image, half="upper"): if hal
我在这个问题上花了一整天,但在堆栈溢出中没有看到答案! 我试过了但是没用: >> pil_image = Image.frombytes('RGBA', wand_image.size, wa
所以,我是那些以始终使用最新版本的浏览器而自豪的人之一(当然 Internet Explorer 除外 - 我说的不是那个浏览器)。 我遇到了 this awesome CSS3 website详细介
如果 image_tag 无法从 url 加载图像,我想呈现默认图像: 因此,如果 image_tag 无法从 url 加载图像: 然后呈现默认值: 这将生成结果 HTML: 关于image -
我正在创建一个类似横幅的组件,并将图像设置为组件的背景,但我无法让它工作。我尝试了网上发布的不同建议,但没有成功,目前我不确定我的错误是否在 react 代码中,或者是 webpack 没有正确加载文
如何解决 Dart 中的这种歧义错误。 import 'dart:io'; import 'package:flutter/material.dart'; import 'package:camera
Center( child: CachedNetworkImage( imageUrl: "http:/ sosme link he
设置 www.website.com/sds/(index.htm) 以便鼠标悬停在不同位置时显示图像。 出于某种原因,当您将鼠标悬停在蓝色气球上时,图像 2.jpg 和 3.jpg(在蓝色气球上来回
社交网络在共享 URL 时可以很好地从网站中提取标题和描述,但对于图像,仍然需要创建自定义元标记:property="og:image" name="twitter:image" itemprop="
我正在尝试写一个简短的,它将读取一个 PNG 文件,并将一个 channel 与另一个 channel (R,G,B) 交换作为可能的选择。 但是,我无法找到如何从 image.At(x,y) 返回的
我是一名优秀的程序员,十分优秀!