분류
jquerymobile
그림자 없는 버튼 만들기
본문
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet"
href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script
src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="content">
<a data-role="button" data-shadow="false" href="#">
I'm a button
without shadows.</a>
</div>
</div>
</body>
</html>
- 이전글버튼 만들기 15.05.24
- 다음글클릭시 버튼을 숨기는 코드 15.05.24