博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
勾选框图片代替,两张图片进行切换
阅读量:5024 次
发布时间:2019-06-12

本文共 692 字,大约阅读时间需要 2 分钟。

HTML代码:

<div class="agree">

<p class="UI-ask"></p>

</div>

 

js代码:

$(".agree>p").bind("click",function(){

if($(this).hasClass("UI-bubble")){
$(this).removeClass("UI-bubble").addClass("UI-ask");
}else{
$(this).removeClass("UI-ask").addClass("UI-bubble");
}
});

 

CSS:

.UI-ask{

display:inline-block;
width:15px;
height:15px;
overflow:hidden;
background:url(../img/goufang.png) 0px 0px no-repeat;
background-size:80%;
position:absolute;
left:5px;
top:5px;
}
.UI-bubble{
display:inline-block;
width:12px;
height:12px;
overflow:hidden;
background:url(../img/fang@2x.png) 0px 0px no-repeat;
background-size:100%;
position:absolute;
left:5px;
top:5px;
}

转载于:https://www.cnblogs.com/hulaoxi/p/6903741.html

你可能感兴趣的文章
编写一个函数isMerge,判断一个字符串str是否可以由其他两个字符串part1和part2“组合”而成...
查看>>
union和union all
查看>>
Github 开源:使用控制器操作 WinForm/WPF 控件( Sheng.Winform.Controls.Controller)
查看>>
PMD使用提醒
查看>>
Codeforces 887D Ratings and Reality Shows
查看>>
论文《A Generative Entity-Mention Model for Linking Entities with Knowledge Base》
查看>>
CentOS 6.7编译安装PHP 5.6
查看>>
Linux记录-salt分析
查看>>
Android Studio默认快捷键
查看>>
发布开源库到JCenter所遇到的一些问题记录
查看>>
第七周作业
查看>>
函数式编程与参数
查看>>
flush caches
查看>>
SSAS使用MDX生成脱机的多维数据集CUB文件
查看>>
ACM_hdu1102最小生成树练习
查看>>
MyBatis源码分析(一)--SqlSessionFactory的生成
查看>>
android中ListView点击和里边按钮或ImageView点击不能同时生效问题解决
查看>>
CTF常用工具之汇总
查看>>
java的面向对象 (2013-09-30-163写的日志迁移
查看>>
HDU 2191 【多重背包】
查看>>