Böylesi yardımcı olur mu?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Slider Plugin</title>
</head>
<body>
<div id="xx">Lorem ipsum</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
(function($) {
$.fn.slider = function(args) {
var self = this;
setTimeout(function(){
self.fadeOut();
}, args.time * 1000);
return self;
};
})(jQuery);
$('#xx').slider({ time: 1, effect: "linear" });
</script>
</body>
</html>