How to slide text and images from left to right with sliding effect(如何使用滑动效果从左向右滑动文本和图像)
问题描述
我正在创建一个网页,我需要在其中滑动文本和图像,使图像从左侧滑动,然后使用 jquery/javascript 单击按钮时文本从右侧滑动.
I am creating a web page where I need to slide the text and image in such a way that image slides from left and then the text slides from right on clicking a button by using jquery/javascript.
请检查此滑块 我希望我的文本和图像像这样滑动
Please check this slider I want my texts and image to slide like this
请用必要的 js/JQuery 建议我
Please suggest me with necessary js/JQuery
推荐答案
Jquery API 和示例演示
daneden.me
he text and image in such a way that image slides from left and then the text slides from right on clicking a button by using jquery/javascript
你把这个放在 div 里面,这是一个解决方案:
This you put inside the div and this is a solution:
<!DOCTYPE html>
<html>
<head>
<style>
div {
position: relative;
background-color: #abc;
width: 40px;
height: 40px;
float: left;
margin: 5px;
}
</style>
<script src="aHR0cDovL2NvZGUuanF1ZXJ5LmNvbS9qcXVlcnktMS45LjEuanM="></script>
</head>
<body>
<p><button id="go">Run »</button></p>
<div class="block"></div> <div class="block"></div>
<div class="block"></div> <div class="block"></div>
<div class="block"></div> <div class="block"></div>
<script>
$( "#go" ).click(function(){
$( ".block:first" ).animate({
left: 100
}, {
duration: 1000,
step: function( now, fx ){
$( ".block:gt(0)" ).css( "left", now );
}
});
});
</script>
</body>
</html>
这篇关于如何使用滑动效果从左向右滑动文本和图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用滑动效果从左向右滑动文本和图像
- 如何显示带有换行符的文本标签? 2022-01-01
- 从原点悬停时触发 translateY() 2022-01-01
- 使用 iframe URL 的 jQuery UI 对话框 2022-01-01
- 我不能使用 json 使用 react 向我的 web api 发出 Post 请求 2022-01-01
- 是否可以将标志传递给 Gulp 以使其以不同的方式 2022-01-01
- 在不使用循环的情况下查找数字数组中的一项 2022-01-01
- 如何调试 CSS/Javascript 悬停问题 2022-01-01
- 如何向 ipc 渲染器发送添加回调 2022-01-01
- 为什么我的页面无法在 Github 上加载? 2022-01-01
- 为什么悬停在委托事件处理程序中不起作用? 2022-01-01