在幻灯片,图库中调整照片大小

时间:2018-06-15 20:26:58

标签: image size gallery slideshow

`

void main()
{
    std::map<int,int> keyValueMap;

    keyValueMap[0] = 1;
    keyValueMap[0] = 2;

    int index = keyValueMap.begin()->second;
}
.container{
	position: relative;	
}
/* Hide the images by default */
.mySlides{
	display: none;

}
/* Add a pointer when hovering over the thumbnail images */
.cursor{
	cursor: pointer;
}
/* Next & previous buttons */
.prev,
.next{
	cursor: pointer;
	position: absolute;
	top: 40%;
	width: auto;
	padding: 16px;
	margin-top: -50px;
	color: white;
	font-weight: bold;
	font-size: 20px;
	border-radius: 0 3px 3px 0;
	user-select: none;
	-webkit-user-select: none;
}

`我正在尝试创建照片库/幻灯片。在逐步遵循w3school说明之前,我尝试了几种不同的尝试。但是,图像大小不同,幻灯片控件不起作用。我错过了一些简单的东西,还是严格来说这是一个大小问题?

谢谢

0 个答案:

没有答案