Questions tagged [cover]

219 questions
3
votes
2 answers

CSS background 100% height

html,body{ background: linear-gradient(to right top, #336e7b 0%, #8e44ad 50%, #e74c3c 100%) repeat scroll 0 0 #abb7b7; margin:0; padding:0; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size:…
Eric Lo
  • 99
  • 9
3
votes
1 answer

What is the proper image size for an ePub cover page?

I am using the most excellent PHP library ePub to on-the-fly create digital books from HTML stored in my database. As these are part of a collection, I am including a cover image for every book. Everything works fine in the code but depending upon…
Sablefoste
  • 4,032
  • 3
  • 37
  • 58
2
votes
1 answer

Extract "cover image" from CHM and EPUB files

How can I programmatically and reliably create PNG images from CHM and EPUB files? The page that's needed is only the first one, as in "cover image thumbnail generation". Could this even be done just from the command line? I have already looked at…
Robottinosino
  • 10,384
  • 17
  • 59
  • 97
2
votes
4 answers

Profile Cover Editing via Facebook's Api

I know that this question was raised out several times, and I even read most of the questions regarding the topic. But there was a gap of about a month till now, and I'd like to know if there is any process in changing the Timeline Cover picture…
funerr
  • 7,212
  • 14
  • 81
  • 129
2
votes
1 answer

Poor performance of Chrome using background-size: cover

I need to cover background in my site and I always see lags/slugs on mouse over or any other action. Do you have any idea how to fix this issue? I have a working example here (If I didnt update the code yet) : http://natgeo.geryit.com ul#posters li…
goksel
  • 4,450
  • 3
  • 42
  • 51
2
votes
2 answers

Get new profile cover with sdk

Is it possible to get and to change the new porfile cover (mine or my friends' profil cover) with the sdk php or JS ?
Dev Laeti
  • 21
  • 2
2
votes
1 answer

How to use 'cover' option in pdfkit?

I'm trying to make a pdf file with a list of images, one image per page. The image should cover the whole page and shouldn't be cropped. I don't want to use fit option cause i'll have to provide width and height and it will be a hassle. So I figured…
user9441203
2
votes
0 answers

All-KNN (All-K-Nearest-Neighbors) in Cover Trees

I think I know how to do K-Nearest-Neighbors using Cover Trees. (Incidentally: can anybody point me to a run-time complexity analysis of this?), BUT I am looking for all-kNN (that is: find the kNN of all points in the tree).
Nitzan
  • 21
  • 1
2
votes
2 answers

Strange gap at the bottom of the HTML video element, when using object-fit: cover;

In some cases, when one of the parent elements in HTML is having margin of padding defined at the bottom or at the top, it will happen that your video object can't stretch the source media to the fullest within itself. Even if you define the…
Mladen Janjetovic
  • 13,844
  • 8
  • 72
  • 82
2
votes
2 answers

Minimum point link in 8-neighborhood

This is my probleme, I've got a list of point in matrix and I want to link all of these points and minimize this cover. I work on 8-neighborhood, and link must be also on point. For example, one solution…
Hideman
  • 81
  • 1
  • 10
2
votes
1 answer

golang File WriteString cover

I want get increment id with file, code as below: // get increment id func GetID() uint64 { appIdLock.Lock() defer appIdLock.Unlock() f, err := os.OpenFile(idPath, os.O_RDWR, 0666) if err != nil { return 0 } defer…
jian.wu
  • 85
  • 3
2
votes
2 answers

Algorithm to cover a shape with n number of other objects in 2d

Hi I am looking for an algorithm of cover given shape with other n objects. I saw some bin packing algorithms but they try to fit all objects perfectly inside the given container. In my case is like If someone can help me, or guide me, where I can…
Alex
  • 1,571
  • 3
  • 13
  • 16
2
votes
3 answers

How to make Bootstrap 4 Cover Example work?

I'm a beginner at this. How do I make Bootstrap 4 cover example work correctly so I can edit it myself? I've tried downloading the source, take bootstrap.min.css and .js and place them in my main folder, then View Page Source to get the template's…
digitalsara
  • 65
  • 1
  • 5
2
votes
2 answers

background-size:cover; zoom in/out effect

I'm having an issue trying to use the background-size:cover; in css. To explain: When I have one div of width 100% and fixed height, when I control+ and control- in browser, the background image of that div is not fitted inside the div, it changes(…
Adi Pîslaru
  • 139
  • 2
  • 13
2
votes
2 answers

Bootstrap - Set cover image over navbar

I've a bootstrap formatted page with a fixed top navbar. What I want is to set a full width (fixed height) cover image just over the nav (responsive possibly...). I've tried this, but the cover just not show. UPDATE1: the navbar is showed in bottom…
ciccioassenza
  • 233
  • 1
  • 7
  • 17
1 2
3
14 15