jquery - css3图片抖动
问题描述
我这个点击document弹出图片他会抖动,不知道是怎么回事?要是把外层的sdf去了他又是正常的,要怎么改
<!DOCTYPE html><html lang='en'><head> <meta charset='UTF-8'> <title>Document</title> <style>.sdf{ width:500px; height:500px; overflow:hidden; margin:200px auto; position:relative;} .outter{ width:174px; height:155px; position:absolute; top:100px; left:200px; transition:all 1s ease; } .dd{ background:url(http://www.ppt123.net/beijing/UploadFiles_8374/201203/2012032518062306.jpg); overflow:hidden; background-size:174px 155px; background-position:center center; transition:all 1s ease; width:0px; height:155px; margin:0 auto; } </style></head><body> <p class='sdf'><img src='http://img06.sephome.com/201602/D2D5B00588B8488496F37014622724F9.jpeg' src='http://img06.sephome.com/201602/D2D5B00588B8488496F37014622724F9.jpeg' alt='' style='display: inline;'><p class='outter'> <p class=’dd’></p></p> </p> <script src='http://cdn.bootcss.com/jquery/2.2.1/jquery.js'></script> <script>$(function() { $(document).on(’click’, function() { $('.dd').css({ ’width’:’174px’ }) }); }); </script></body></html>
问题解答
回答1:[doge]这根本没有涉及 css3 好不,你就是单纯的改变一个p的宽度,p的宽度原来占据的位置是0,你通过js来改变它的宽度,就会触发浏览器的重绘。
建议是使用 transform:scale(0); 缩放元素,点击之后在还原 transform:scale(1);,这样就不会触发浏览器的重绘了。
回答2:受1楼启发
<!DOCTYPE html><html lang='en'><head> <meta charset='UTF-8'> <title>Document</title> <style>.sdf{ width:500px; height:500px; overflow:hidden; margin:200px auto; position:relative;} .outter{ width:174px; height:155px; position:absolute; top:100px; left:200px; transition:all 1s ease; } .dd{ background:url(http://www.ppt123.net/beijing/UploadFiles_8374/201203/2012032518062306.jpg); overflow:hidden; background-size:174px 155px; background-position:center center; transition:all 1s ease; transform: scale(0,1); width:174px; height:155px; margin:0 auto; } </style></head><body> <p class='sdf'><img src='http://img06.sephome.com/201602/D2D5B00588B8488496F37014622724F9.jpeg' src='http://img06.sephome.com/201602/D2D5B00588B8488496F37014622724F9.jpeg' alt='' style='display: inline;'><p class='outter'> <p class=’dd’></p></p> </p> <script src='http://cdn.bootcss.com/jquery/2.2.1/jquery.js'></script> <script>$(function() { $(document).on(’click’, function() { $('.dd').css(’transform’, ’scale(1, 1)’); }); }); </script></body></html>回答3:
你把width缩小就是缩小一下,跟抖动并没有什么关系啊。。说起来我理解的抖动不应该是做一个animation,先向左transport再向右?
相关文章:
1. ruby - curb已安装,但一直无法加载。2. javascript - vue-cli创建的项目,少一些步骤,对项目有影响吗?3. docker - 如何修改运行中容器的配置4. android - react-native报Starting: Intent { cmp=com.elm/.MainActivity }5. html - iframe嵌套网页在iPhone端的显示问题6. docker容器呢SSH为什么连不通呢?7. angular.js - angular内容过长展开收起效果8. angular.js使用$resource服务把数据存入mongodb的问题。9. linux - 新手-----nginx怎么配置请求转发?10. 前端HTML与PHP+MySQL连接

网公网安备