- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用列创建一个照片网格,将所有提供的照片放在一起,它们之间没有任何空白。
这是我正在使用的 CSS:
.autofit-photo-grid {
/* Prevent vertical gaps */
line-height: 0;
-webkit-column-count: 3;
-webkit-column-gap: 0;
-moz-column-count: 3;
-moz-column-gap: 0;
column-count: 3;
column-gap: 0;
}
.autofit-photo-grid img {
/* Just in case there are inline attributes */
width: 100% !important;
height: auto !important;
border: 1px solid #777;
opacity: 0.85;
}
这是一个显示问题的 fiddle 示例:https://jsfiddle.net/es7hLuq4/
如果将鼠标悬停在每张图片上,您会看到他们说“照片 1”、“照片 2”等,但顺序是这样的
1 4 7
2 5 8
3 6 9
但我希望它是这样的
1 2 3
4 5 6
7 8 9
这可以用纯 CSS 实现吗?如果没有,是否有任何干净的 jQuery 解决方案可以提供帮助?我想遍历每个图像元素并尝试检查它在哪一列,但这看起来很乱(必须在调整大小时重复)而且我也不知道如何检查元素当前在哪一列。
关于如何实现相同的自动调整网格效果但从左到右而不是从上到下列出连续元素的任何想法?
最佳答案
我已经通过为每个图像使用矩阵索引解决了这个问题。第一个完成的版本有点粗糙,当相邻图像的纵横比截然不同时,有时会稍微偏离重新排序。
我将开发一个考虑图像尺寸的更新版本,并在完成后更新答案和 fiddle 。
我将这个 JS/jQuery 用于样本重排功能:
样本文件:https://jsfiddle.net/069f72ep/
// define currentColumnCount outside the function scope so it can be compared when window is resized
var currentColumnCount;
var attributeToIndex; // switch to src for actual, title for debug/human-readable
function rearrangePhotos(performRearrange) {
// if not performing rearragement, index titles instead of src for debug/human
attributeToIndex = (!performRearrange) ? 'title' : 'src';
// get current number of columns being displayed
currentColumnCount = $('.autofit-photo-grid').css('column-count');
// create arrays to store values in
var originalPhotoMatrix, reversePhotoMatrix, columnPerimeters;
originalPhotoMatrix = new Array();
reversePhotoMatrix = new Array();
columnPerimeters = new Array();
// loop through all the images to compare their left & top perimeters to determine their cell position
$('.autofit-photo-grid img').each(function() {
// if the left perimeter is not found in the array, its a new column
if (columnPerimeters.indexOf($(this).offset().left) == -1)
columnPerimeters[columnPerimeters.length] = $(this).offset().left; // create new columnPerimeter record
}); // end loop
// sort the columns to be in consecutive order
columnPerimeters = columnPerimeters.sort(function(a, b) {
return a - b
});
// now that we have the perimeters of each column, let's figure out which cell each photo belongs to
var colCounter = 1;
var rowCounter = 1;
// loop through all the raw image objects again
$('.autofit-photo-grid img').each(function() {
// get the current position of the image again to determine which column it's in
var currentOffset = $(this).offset().left;
// get the column based on the position of the current image
var currentCol = columnPerimeters.indexOf(currentOffset) + 1;
// if we encounter a new column, reset and increment our col/row counters accordingly
if (currentCol != colCounter) {
colCounter++;
rowCounter = 1;
}
// assign the matrix index to a data attr on the img
$(this).attr('data-matrix-key', rowCounter + ',' + colCounter);
// assign original and reverse matrix values
originalPhotoMatrix[rowCounter + ',' + colCounter] = $(this).attr(attributeToIndex);
reversePhotoMatrix[colCounter + ',' + rowCounter] = $(this).attr(attributeToIndex);
// increment the row counter before restarting the loop
rowCounter++;
}); // end loop
// sort the original matrix by key so that it's in the proper order before generating key list for
// final version of reversePhotoMatrix
originalPhotoMatrix = ksort(originalPhotoMatrix);
// assign matrix id by looping through existing matrix keys/indexes
var availableKeys = new Array(); // create array to store keys/indexes in
for (var key in originalPhotoMatrix) { // loop through the keys and contents of the original matrix
availableKeys[availableKeys.length] = key; // add this key to the list of available keys
} // end loop
// generate the new photo matrix based on the next available key from the old matrix
var c = 0; // intialize counter
reversePhotoMatrix = new Array(); // clear array to prevent any unused/leftover/nonexistent values from lingering
// loop through the images....AGAIN
$('.autofit-photo-grid img').each(function() {
// determine the next available matrix key/index based on the current counter value
var nextAvailableKey = availableKeys[c];
// reassign new key/index and value to reverse photo matrix
reversePhotoMatrix[nextAvailableKey] = $(this).attr(attributeToIndex);
c++; // increment the counter before restarting the loop
}); // end loop
// finally, loop through all the original matrix items and grab the corresponding item from the reverse matrix
console.log("\n\nRearrange ready\n\n"); // just a console comment
// loop through all keys and values in the original matrix
for (var key in originalPhotoMatrix) {
if (!performRearrange) // if performRearrange=false, only display console output
console.log('Swap ' + originalPhotoMatrix[key] + ' with ' + reversePhotoMatrix[key]);
if (performRearrange) // if performRearrange=true, perform the actual rearrangement
$('.autofit-photo-grid img[data-matrix-key="' + key + '"]').attr(attributeToIndex, reversePhotoMatrix[key]);
} // end loop
} // end rearrangePhotos function
// This is just to attach the click event to the text/link at the top
$('.rearrange-link').click(function() {
// on the first click, call rearrangePhotos(performRearrange=false)
rearrangePhotos(false);
// Now change the link text to instruct the next click
$(this).text('Now rearrange them');
// Now attempt to rearrange the actual photo sources with rearrangePhotos(performRearrange=true)
$(this).click(function() {
rearrangePhotos(true);
});
});
// Run the rearrangePhotos() function everytime the window size is adjusted
$(window).resize(function() {
if ( currentColumnCount != $('.autofit-photo-grid').css('column-count') )
rearrangePhotos(false);
});
关于javascript - CSS 列(照片网格)从左到右而不是从上到下显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35735877/
我想知道最终用户按下了什么,所以我使用了 getch() 。 如果用户按右,我可以获得0xE0 0x4D。 如果用户按下Ctrl+右,我可以获得0xE0 0x47。 如果用户按下Shift+右,我可以
我已经构建了一个应用程序来搜索我的位置。 这是代码 var map; var gdir; var geocoder = null; var addressMarker; function init
我想为我的元素设计布局 View 。布局 View 在左 Angular 和右 Angular (同一行)有一个图像,将有 2 行单词,一行在第 1 行,另一行在第 2 行。我该如何实现? It
我有一个很长的线性(分支不多)流程图,在 graphviz 中显示为要么太高而无法放在单个页面上,要么太宽(如果方向是从左到右) 是否有一种简单的方法可以让 graphviz 以从左到右,然后向下,然
我一直摸不着头脑,但运气不好。设计器有一个包含 3 栏的站点、两个侧边栏和一个主要内容区域。 专为桌面设计,左栏、主要内容、右栏。但是,在较小的设备上,我们希望首先堆叠主要内容。 所以通常情况下,你可
我想要从上到下和从左到右组织的 css block 。 为了更好地解释这是一张图片,其中包含我到目前为止所获得的内容以及我希望使用 CSS 实现的内容: 代码如下: HTML: 1 2 3 4 5
当我问this question时,答案之一(现已删除)建议Either类型对应Curry-Howard correspondence中的XOR而不是OR,因为它不能同时是Left和Right。 真相
如果一行中六个观察值中至少有三个是 != NA,我想计算该行的平均值。如果存在四个或更多 NA,则平均值应显示为 NA。 给出平均值的例子,忽略了 NA: require(dplyr) a % mut
我有一个由 9 列组成的数据框,其中包含一个因素 list 。每行可以填充所有 9 列(因为在该行中包含 9 个“事物”),但大多数没有(大多数有 3-4 个)。列也不是特定的,就像第 1 列和第 3
这是我第一次尝试使用 R 构建函数。基本上我的预期目标如下。 使用 RoogleVision 包与 Google Cloud Vision API 通信 函数遍历目录中的图片 从每张图片的 Googl
使用: mean (x, trim=0.05) 从分布的每一侧移除 2.5%,这对于对称的双尾数据来说很好。但是如果我有一个尾部或高度不对称的数据,我希望能够只删除分布的一侧。有没有这个功能,还是我自
我想保留重复的列,并删除唯一的列。这些列将具有相同的值,但名称不同。 x1 = rnorm(1:10) x2 = rnorm(1:10) x3 = x1 x4 = rnorm(1:10) x5 = x
是否可以使WPF工具栏中的元素的Right水平对齐方式正确? 我尝试将内部元素添加到Grid中,并将ColumnDefinition分配给Left / Right。我
datatable(head(iris)) 如何将我的列居中,使其位于我的列名称的正下方? 最佳答案 您可以使用options 下的columnDefs 自变量。将 className 设置为 dt-
我是 R 的新手,但我正在尝试在 R 中制作滑动窗口。 使用循环我可以像这样,但这变得非常低效。 results=c(1:7) letters=c("A","B","C","D","E","F","G
假设我有这个 .txt 文件: here is line 1 here is line 2 here is line 3 here is line 4 我想将此字符串粘贴到第 3 行和第 4 行之间:
假设我有这个 .txt 文件: here is line 1 here is line 2 here is line 3 here is line 4 我想将此字符串粘贴到第 3 行和第 4 行之间:
我想知道我的环境中有什么类型的对象。 我可以像这样显示谁在那里: ls() 但是运行类似的东西 sapply(ls(), class) (显然)不会告诉我们我们拥有什么类型(类)的对象(函数、数字、因
我想创建一个带有水平标签的树状图,但让叶子根据它们的高度悬挂,而不是仅仅下降到图的边缘。 例子: par(mfrow = c(1,2)) hc <- hclust(dist(USArrests), "
我的 CSS 中有一个元素,如下所示 .xyz{ position:absolute; left:50%; } 现在正如预期的那样,当我减小浏览器窗口的宽度时,这个元素向左移动
我是一名优秀的程序员,十分优秀!