近年來,社交媒體和移動應(yīng)用程序的日益普及使得簽到變得非常流行。在網(wǎng)站上,我們也可以讓用戶進(jìn)行簽到操作。如果我們要為用戶提供一個(gè)美觀實(shí)用的簽到界面,jQuery 3D簽到插件是一個(gè)非常好的選擇。
?<script type="text/javascript" src="jquery.min.js"></script> <script type="text/javascript" src="jquery.threed.min.js"></script> <link rel="stylesheet" type="text/css" href="jquery.threed.css" /> <script type="text/javascript"> $(document).ready(function(){ $('#button').click(function(){ $('.sign').animate({ threed: { rotateX: 180, rotateY: 180, rotateZ: 0 } }, 1000, function(){ $(this).hide(); $('.message').fadeIn(200); }); }); }); </script>
如上所示,我們需要在頁面上引入 jQuery、jQuery 3D和CSS文件。然后將按鈕的點(diǎn)擊事件綁定到簽到元素,用動畫的方式將其在3D空間中翻轉(zhuǎn)180度,并在動畫結(jié)束后顯示成功信息。