html5 - 这效果用div+css怎么做?
PHP中文网
PHP中文网 2017-04-17 13:12:07
0
10
1145

这里把一张图分割成几个矩形显示,请问有什么方法可以做到?

我现在想到一种方法是:画5个p,每个p里面显示这张图片的一个区域,但是这样等于生成5个image对象,效率会不会很低,因为这个页面有可能有上百张这种图片的,每张图都这样弄,会不会导致页面很卡?

PHP中文网
PHP中文网

认证0级讲师

reply all(10)
迷茫

Is it possible that the picture was not cropped, but a few white lines were added to the picture

左手右手慢动作

The efficiency will not be lower in this way, because only one image is introduced, and as long as the path in src is the same, it will not cause additional pressure on the browser.

On the contrary, if you cut a picture into 5 pieces, the efficiency will be reduced due to excessive loading. Especially when there are a lot of pictures, the loading pressure will be greater.

So your solution is a great one.

左手右手慢动作

At this time, canvas can be a good solution. Use canvas to take screenshots and then assign them to p. However, canvas does not support cross-domain images.

迷茫

You can do it with canvas, canvas has a cropping method

大家讲道理

I have an idea, first put a big p and set its background image to a large image.
Then put a small p inside, set the transparency to 0, and then set the width and color of the border.
I don’t know if it’s possible, I might give it a try when I have time.


I saw a library a few days ago, which is somewhat similar to the original poster’s needs
Multiple.js

黄舟

background-position That’s it, but it needs to be calculated well. This is how many animation effects are achieved

刘奇

Try using the picture as the background and the white line using broder,

PHPzhong

If you only use p css, for a sprite image, set five boxes, set the size, calculate the distance, and set the position

大家讲道理

The best is a sprite image, the second best is to cover it with white stripes

Peter_Zhu

Set the background image and then use background-position to set the position of the image background

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template