jquery - js向两边展开
问题描述
比如我有这样一个p宽100高100我想点击的是时候让他的展示方式是从中间向两边展开,css3要怎么写
问题解答
回答1:<!DOCTYPE html><html lang='en'><head> <meta charset='UTF-8'> <title>Document</title> <style>.outter { position: relative; width: 202px; height: 400px;}.left,.right { position: absolute; top: 0; left: 0; display: inline-block; width: 100px; height: 400px; background-color: #000;}.right { left: inherit; right: 0;}.ani { animation: ani 5s; -moz-animation: ani 5s; /* Firefox */ -webkit-animation: ani 5s; /* Safari 和 Chrome */ -o-animation: ani 5s;}@keyframes ani { from {width: 100px; } to {width: 0; }} </style></head><body> <p class='outter'><p class='left inner'></p><p class='right inner'></p> </p> <script src='http://cdn.bootcss.com/jquery/2.2.1/jquery.js'></script> <script>$(function() { var inner = $(’.inner’); $(’.outter’).one(’click’, function() {inner.addClass(’ani’).on(’webkitAnimationEnd’, function() { inner.hide();}); }); }); </script></body></html>回答2:
作为初学者,看楼主提问带的标签里有JQ,就兴致勃勃地写了一下。其实楼上的CSS3属性真心很好啊!
<!DOCTYPE html><html><head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>两边展开</title> <link rel='stylesheet' href='https://www.haobala.com/wenda/5947.html'> <style> .content {width: 100px;height: 100px;position: relative;overflow: hidden; }.content p {position: absolute;width: 49px;height: 100px; }.left {left: 0;background-color: black;margin-right: 2px; }.right {background-color: black;right: 0; } </style></head><body> <p class='content'><p class='left'></p><p class='right'></p> </p> <script src='https://www.haobala.com/wenda/js/jquery-1.12.0.min.js'></script> <script> $(function() {$('.content').click(function() { $('.left').animate({left: '-49px' }, 1000); $('.right').animate({right: '-49px' }, 1000)}) }) </script></body></html>回答3:
使用translateX(n)属性,文档看下面http://www.w3school.com.cn/css3/css3_2dtransform.asp
相关文章:
1. angular.js - vue中类似于angular的ng-change的指令是?2. PHP能实现百度网盘的自动化么?3. android - 使用vue.js进行原生开发如何进行Class绑定4. node.js - 微信的自动回复问题5. html5 - 在一个页面中 初始了两个swiper 不知道哪里错了 一直不对6. node.js - vue服务端渲染如何部署到线上7. css3 - 请问一下在移动端CSS布局布局中通常需要用到哪些元素,属性?8. 网页爬虫 - python requests爬虫,如何post payload9. MySQL 水平拆分之后,自动增长的ID有什么好的解决办法?10. javascript - 百度图片切换图片时url会改变,但无刷新,没用hash,IE8也支持,请问是用了什么技术?
